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

View File

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