diff options
Diffstat (limited to 'pkgs/development/python-modules/deprecated/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/deprecated/default.nix | 30 |
1 files changed, 14 insertions, 16 deletions
diff --git a/pkgs/development/python-modules/deprecated/default.nix b/pkgs/development/python-modules/deprecated/default.nix index 09664f977a05..e32aab6be8a2 100644 --- a/pkgs/development/python-modules/deprecated/default.nix +++ b/pkgs/development/python-modules/deprecated/default.nix @@ -1,16 +1,20 @@ -{ lib -, fetchFromGitHub -, buildPythonPackage -, wrapt -, pytestCheckHook -, sphinxHook +{ + lib, + fetchFromGitHub, + buildPythonPackage, + wrapt, + pytestCheckHook, + sphinxHook, }: buildPythonPackage rec { pname = "deprecated"; version = "1.2.14"; format = "setuptools"; - outputs = [ "out" "doc" ]; + outputs = [ + "out" + "doc" + ]; src = fetchFromGitHub { owner = "tantale"; @@ -19,17 +23,11 @@ buildPythonPackage rec { hash = "sha256-H5Gp2F/ChMeEH4fSYXIB34syDIzDymfN949ksJnS0k4="; }; - nativeBuildInputs = [ - sphinxHook - ]; + nativeBuildInputs = [ sphinxHook ]; - propagatedBuildInputs = [ - wrapt - ]; + propagatedBuildInputs = [ wrapt ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "deprecated" ]; |
