diff options
Diffstat (limited to 'pkgs/development/python-modules/thttp/default.nix')
-rw-r--r-- | pkgs/development/python-modules/thttp/default.nix | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/pkgs/development/python-modules/thttp/default.nix b/pkgs/development/python-modules/thttp/default.nix index 0e42f2a0c23a..afda125c5d4e 100644 --- a/pkgs/development/python-modules/thttp/default.nix +++ b/pkgs/development/python-modules/thttp/default.nix @@ -1,8 +1,9 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, setuptools -, pythonOlder +{ + lib, + buildPythonPackage, + fetchFromGitHub, + setuptools, + pythonOlder, }: buildPythonPackage rec { @@ -19,16 +20,12 @@ buildPythonPackage rec { hash = "sha256-e15QMRMpTcWo8TfH3tk23ybSlXFb8F4B/eqAp9oyK8g="; }; - nativeBuildInputs = [ - setuptools - ]; + nativeBuildInputs = [ setuptools ]; - pythonImportsCheck = [ - "thttp" - ]; + pythonImportsCheck = [ "thttp" ]; meta = with lib; { - description = "A lightweight wrapper around urllib"; + description = "Lightweight wrapper around urllib"; homepage = "https://github.com/sesh/thttp"; changelog = "https://github.com/sesh/thttp/releases/tag/${version}"; license = licenses.mit; |