Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 37 lines 856 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, zope-deferredimport 5, zope_deprecation 6, zope_event 7, zope-hookable 8, zope_interface 9, zope_configuration 10, zope_i18nmessageid 11}: 12 13buildPythonPackage rec { 14 pname = "zope.component"; 15 version = "4.6"; 16 17 src = fetchPypi { 18 inherit pname version; 19 sha256 = "ec2afc5bbe611dcace98bb39822c122d44743d635dafc7315b9aef25097db9e6"; 20 }; 21 22 propagatedBuildInputs = [ 23 zope-deferredimport zope_deprecation zope_event zope-hookable zope_interface 24 zope_configuration zope_i18nmessageid 25 ]; 26 27 # ignore tests because of a circular dependency on zope_security 28 doCheck = false; 29 30 meta = with stdenv.lib; { 31 homepage = https://github.com/zopefoundation/zope.component; 32 description = "Zope Component Architecture"; 33 license = licenses.zpl20; 34 maintainers = with maintainers; [ goibhniu ]; 35 }; 36 37}