diff options
Diffstat (limited to 'pkgs/development/python-modules/moretools/default.nix')
-rw-r--r-- | pkgs/development/python-modules/moretools/default.nix | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/moretools/default.nix b/pkgs/development/python-modules/moretools/default.nix index 7bbed27a8e99..7787360d5835 100644 --- a/pkgs/development/python-modules/moretools/default.nix +++ b/pkgs/development/python-modules/moretools/default.nix @@ -1,6 +1,13 @@ -{ lib, buildPythonPackage, fetchPypi -, six, path, zetup, pytest -, decorator }: +{ + lib, + buildPythonPackage, + fetchPypi, + six, + path, + zetup, + pytest, + decorator, +}: buildPythonPackage rec { pname = "moretools"; @@ -17,7 +24,11 @@ buildPythonPackage rec { ''; nativeBuildInputs = [ zetup ]; - nativeCheckInputs = [ six path pytest ]; + nativeCheckInputs = [ + six + path + pytest + ]; propagatedBuildInputs = [ decorator ]; meta = with lib; { |