diff options
Diffstat (limited to 'pkgs/development/python-modules/h2')
-rw-r--r-- | pkgs/development/python-modules/h2/default.nix | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/pkgs/development/python-modules/h2/default.nix b/pkgs/development/python-modules/h2/default.nix index bb37c4d1607b..3666c7db9e64 100644 --- a/pkgs/development/python-modules/h2/default.nix +++ b/pkgs/development/python-modules/h2/default.nix @@ -1,12 +1,13 @@ -{ lib -, buildPythonPackage -, pythonOlder -, fetchPypi -, fetchpatch -, hpack -, hyperframe -, pytestCheckHook -, hypothesis +{ + lib, + buildPythonPackage, + pythonOlder, + fetchPypi, + fetchpatch, + hpack, + hyperframe, + pytestCheckHook, + hypothesis, }: buildPythonPackage rec { @@ -54,6 +55,6 @@ buildPythonPackage rec { description = "HTTP/2 State-Machine based protocol implementation"; homepage = "https://github.com/python-hyper/h2"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } |