Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 33 lines 792 B view raw
1{ stdenv 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 = "4.9.3"; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "2d971da8707cab47b1916534b9929dcd9d7f23aed790e6b4cbe3103d5b18069d"; 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 stdenv.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}