diff options
Diffstat (limited to 'pkgs/development/python-modules/cloup/default.nix')
-rw-r--r-- | pkgs/development/python-modules/cloup/default.nix | 37 |
1 files changed, 14 insertions, 23 deletions
diff --git a/pkgs/development/python-modules/cloup/default.nix b/pkgs/development/python-modules/cloup/default.nix index ad66af8123bf..e5564a7800b2 100644 --- a/pkgs/development/python-modules/cloup/default.nix +++ b/pkgs/development/python-modules/cloup/default.nix @@ -1,11 +1,12 @@ -{ lib -, buildPythonPackage -, fetchPypi -, pytestCheckHook -, click -, setuptools-scm -, pythonOlder -, typing-extensions +{ + lib, + buildPythonPackage, + fetchPypi, + pytestCheckHook, + click, + setuptools-scm, + pythonOlder, + typing-extensions, }: buildPythonPackage rec { @@ -20,23 +21,13 @@ buildPythonPackage rec { hash = "sha256-ySsmHHu34TAEkw8/tLPtrY3i0fEplNzdvgW8IZkEQ8U="; }; - nativeBuildInputs = [ - setuptools-scm - ]; + nativeBuildInputs = [ setuptools-scm ]; - propagatedBuildInputs = [ - click - ] ++ lib.optionals (pythonOlder "3.8") [ - typing-extensions - ]; + propagatedBuildInputs = [ click ] ++ lib.optionals (pythonOlder "3.8") [ typing-extensions ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; - pythonImportsCheck = [ - "cloup" - ]; + pythonImportsCheck = [ "cloup" ]; meta = with lib; { homepage = "https://github.com/janLuke/cloup"; @@ -46,6 +37,6 @@ buildPythonPackage rec { Enriches Click with option groups, constraints, command aliases, help sections for subcommands, themes for --help and other stuff. ''; license = licenses.bsd3; - maintainers = with maintainers; [ friedelino ]; + maintainers = [ ]; }; } |