diff options
Diffstat (limited to 'pkgs/development/python-modules/kiss-headers/default.nix')
-rw-r--r-- | pkgs/development/python-modules/kiss-headers/default.nix | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/kiss-headers/default.nix b/pkgs/development/python-modules/kiss-headers/default.nix index 895773678ca8..e7e52dacd187 100644 --- a/pkgs/development/python-modules/kiss-headers/default.nix +++ b/pkgs/development/python-modules/kiss-headers/default.nix @@ -1,4 +1,11 @@ -{ lib, buildPythonPackage, fetchFromGitHub, hatchling, requests, pytestCheckHook }: +{ + lib, + buildPythonPackage, + fetchFromGitHub, + hatchling, + requests, + pytestCheckHook, +}: buildPythonPackage rec { pname = "kiss-headers"; @@ -36,6 +43,6 @@ buildPythonPackage rec { description = "Python package for HTTP/1.1 style headers"; homepage = "https://github.com/Ousret/kiss-headers"; license = licenses.mit; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } |