Merge pull request #302156 from fabaff/reconplogger-bump

python312Packages.reconplogger: 4.15.0 -> 4.16.0
This commit is contained in:
Fabian Affolter 2024-04-07 00:14:44 +02:00 committed by GitHub
commit 3b72d2269b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 18 additions and 23 deletions

View File

@ -1,19 +1,20 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, flask
, logmatic-python
, pytestCheckHook
, pythonOlder
, pyyaml
, requests
, setuptools
, testfixtures
{
lib,
buildPythonPackage,
fetchFromGitHub,
flask,
logmatic-python,
pytestCheckHook,
pythonOlder,
pyyaml,
requests,
setuptools,
testfixtures,
}:
buildPythonPackage rec {
pname = "reconplogger";
version = "4.15.0";
version = "4.16.0";
pyproject = true;
disabled = pythonOlder "3.8";
@ -22,14 +23,12 @@ buildPythonPackage rec {
owner = "omni-us";
repo = "reconplogger";
rev = "refs/tags/v${version}";
hash = "sha256-0+YOrMqyDK6uAni2h5b6P850veIkUiifX6aHzCnRHD0=";
hash = "sha256-jBWy5oHyZpRUWb8OW0dRFfpu3m3hTd5dpIOQCRO5swM=";
};
nativeBuildInputs = [
setuptools
];
build-system = [ setuptools ];
propagatedBuildInputs = [
dependencies = [
logmatic-python
pyyaml
];
@ -46,13 +45,9 @@ buildPythonPackage rec {
testfixtures
];
pythonImportsCheck = [
"reconplogger"
];
pythonImportsCheck = [ "reconplogger" ];
pytestFlagsArray = [
"reconplogger_tests.py"
];
pytestFlagsArray = [ "reconplogger_tests.py" ];
meta = with lib; {
description = "Module to ease the standardization of logging within omni:us";