Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 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 = "5.1.0"; 16 17 src = fetchPypi { 18 inherit pname version; 19 hash = "sha256-pQj5/vG29ShkYtM0DNif+rXHiZ3KBAEzcjnLa6fGuwo="; 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 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}