diff options
Diffstat (limited to 'pkgs/development/python-modules/priority/default.nix')
-rw-r--r-- | pkgs/development/python-modules/priority/default.nix | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/pkgs/development/python-modules/priority/default.nix b/pkgs/development/python-modules/priority/default.nix index 8f12f7f2144e..5ba1bd011312 100644 --- a/pkgs/development/python-modules/priority/default.nix +++ b/pkgs/development/python-modules/priority/default.nix @@ -1,9 +1,10 @@ -{ lib -, buildPythonPackage -, pythonOlder -, fetchPypi -, hypothesis -, pytestCheckHook +{ + lib, + buildPythonPackage, + pythonOlder, + fetchPypi, + hypothesis, + pytestCheckHook, }: buildPythonPackage rec { @@ -17,9 +18,7 @@ buildPythonPackage rec { sha256 = "c965d54f1b8d0d0b19479db3924c7c36cf672dbf2aec92d43fbdaf4492ba18c0"; }; - pythonImportsCheck = [ - "priority" - ]; + pythonImportsCheck = [ "priority" ]; nativeCheckInputs = [ hypothesis @@ -27,7 +26,7 @@ buildPythonPackage rec { ]; meta = with lib; { - description = "A pure-Python implementation of the HTTP/2 priority tree"; + description = "Pure-Python implementation of the HTTP/2 priority tree"; homepage = "https://github.com/python-hyper/priority/"; license = licenses.mit; maintainers = with maintainers; [ qyliss ]; |