1{ lib
2, buildPythonPackage
3, fetchPypi
4, zope_location
5, zope_event
6, zope_interface
7, zope_testing
8}:
9
10buildPythonPackage rec {
11 pname = "zope.schema";
12 version = "6.2.0";
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "2201aef8ad75ee5a881284d7a6acd384661d6dca7bde5e80a22839a77124595b";
17 };
18
19 propagatedBuildInputs = [ zope_location zope_event zope_interface zope_testing ];
20
21 # ImportError: No module named 'zope.event'
22 # even though zope_event has been included.
23 # Package seems to work fine.
24 doCheck = false;
25
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 };
32
33}