diff options
Diffstat (limited to 'pkgs/development/python-modules/lazr/delegates.nix')
-rw-r--r-- | pkgs/development/python-modules/lazr/delegates.nix | 33 |
1 files changed, 12 insertions, 21 deletions
diff --git a/pkgs/development/python-modules/lazr/delegates.nix b/pkgs/development/python-modules/lazr/delegates.nix index ef4eda0de9e5..1ebec55d7d16 100644 --- a/pkgs/development/python-modules/lazr/delegates.nix +++ b/pkgs/development/python-modules/lazr/delegates.nix @@ -1,9 +1,10 @@ -{ lib -, buildPythonPackage -, fetchPypi -, setuptools -, zope-interface -, pytestCheckHook +{ + lib, + buildPythonPackage, + fetchPypi, + setuptools, + zope-interface, + pytestCheckHook, }: buildPythonPackage rec { @@ -17,25 +18,15 @@ buildPythonPackage rec { hash = "sha256-UNT7iHK5UuV6SOEmEOVQ+jBm7rV8bGx1tqUUJBi6wZw="; }; - nativeBuildInputs = [ - setuptools - ]; + nativeBuildInputs = [ setuptools ]; - propagatedBuildInputs = [ - zope-interface - ]; + propagatedBuildInputs = [ zope-interface ]; - pythonImportsCheck = [ - "lazr.delegates" - ]; + pythonImportsCheck = [ "lazr.delegates" ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; - pythonNamespaces = [ - "lazr" - ]; + pythonNamespaces = [ "lazr" ]; meta = with lib; { description = "Easily write objects that delegate behavior"; |