diff options
Diffstat (limited to 'pkgs/development/python-modules/openwebifpy/default.nix')
-rw-r--r-- | pkgs/development/python-modules/openwebifpy/default.nix | 40 |
1 files changed, 17 insertions, 23 deletions
diff --git a/pkgs/development/python-modules/openwebifpy/default.nix b/pkgs/development/python-modules/openwebifpy/default.nix index 160a7708bdf6..1dd4ab8a8f2b 100644 --- a/pkgs/development/python-modules/openwebifpy/default.nix +++ b/pkgs/development/python-modules/openwebifpy/default.nix @@ -1,47 +1,42 @@ -{ lib -, buildPythonPackage -, fetchPypi -, pythonOlder +{ + lib, + buildPythonPackage, + fetchPypi, + pythonOlder, -# build-system -, setuptools + # build-system + setuptools, -# dependencies -, aiohttp -, yarl + # dependencies + aiohttp, + yarl, -# tests -, pytestCheckHook + # tests + pytestCheckHook, }: buildPythonPackage rec { pname = "openwebifpy"; - version = "4.2.4"; + version = "4.2.7"; pyproject = true; disabled = pythonOlder "3.11"; src = fetchPypi { inherit pname version; - hash = "sha256-qL/H2F+/d/JWwmUbZhvoMlZZDGgEpRBmHabt1MWjGAs="; + hash = "sha256-MoTSfoO6km3jAaF9oIDxhxhMI8jqZAyPD6yBYcYxhd4="; }; - nativeBuildInputs = [ - setuptools - ]; + nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ aiohttp yarl ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; - pythonImportsCheck = [ - "openwebif" - ]; + pythonImportsCheck = [ "openwebif" ]; disabledTests = [ # https://github.com/autinerd/openwebifpy/issues/1 @@ -57,4 +52,3 @@ buildPythonPackage rec { maintainers = with maintainers; [ hexa ]; }; } - |