Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
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.5"; 16 17 src = fetchPypi { 18 inherit pname version; 19 sha256 = "6edfd626c3b593b72895a8cfcf79bff41f4619194ce996a85bce31ac02b94e55"; 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}