diff --git a/pkgs/development/python-modules/reconplogger/default.nix b/pkgs/development/python-modules/reconplogger/default.nix index 29f3c8b649aa..319730e8168f 100644 --- a/pkgs/development/python-modules/reconplogger/default.nix +++ b/pkgs/development/python-modules/reconplogger/default.nix @@ -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";