Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / zope_schema / default.nix
blobb3694fe09dc99e23ab91741d03c63215af1b8ec5
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , zope_location
5 , zope_event
6 , zope_interface
7 , zope_testing
8 }:
10 buildPythonPackage rec {
11   pname = "zope.schema";
12   version = "7.0.1";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-6tTbywM1TU5BDJo7kERR60TZAlR1Gxy97fSmGu3p+7k=";
17   };
19   propagatedBuildInputs = [ zope_location zope_event zope_interface zope_testing ];
21   # ImportError: No module named 'zope.event'
22   # even though zope_event has been included.
23   # Package seems to work fine.
24   doCheck = false;
26   meta = with lib; {
27     homepage = "https://github.com/zopefoundation/zope.schema";
28     description = "zope.interface extension for defining data schemas";
29     license = licenses.zpl20;
30     maintainers = with maintainers; [ goibhniu ];
31   };