diff options
Diffstat (limited to 'pkgs/development/python-modules/zope-schema/default.nix')
-rw-r--r-- | pkgs/development/python-modules/zope-schema/default.nix | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/pkgs/development/python-modules/zope-schema/default.nix b/pkgs/development/python-modules/zope-schema/default.nix index 6fde974b6205..a1f4a8f263f7 100644 --- a/pkgs/development/python-modules/zope-schema/default.nix +++ b/pkgs/development/python-modules/zope-schema/default.nix @@ -1,10 +1,11 @@ -{ lib -, buildPythonPackage -, fetchPypi -, zope-location -, zope-event -, zope-interface -, zope-testing +{ + lib, + buildPythonPackage, + fetchPypi, + zope-location, + zope-event, + zope-interface, + zope-testing, }: buildPythonPackage rec { @@ -16,7 +17,12 @@ buildPythonPackage rec { hash = "sha256-6tTbywM1TU5BDJo7kERR60TZAlR1Gxy97fSmGu3p+7k="; }; - propagatedBuildInputs = [ zope-location zope-event zope-interface zope-testing ]; + propagatedBuildInputs = [ + zope-location + zope-event + zope-interface + zope-testing + ]; # ImportError: No module named 'zope.event' # even though zope-event has been included. @@ -27,7 +33,6 @@ buildPythonPackage rec { homepage = "https://github.com/zopefoundation/zope.schema"; description = "zope.interface extension for defining data schemas"; license = licenses.zpl20; - maintainers = with maintainers; [ goibhniu ]; + maintainers = [ ]; }; - } |