Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 33 lines 763 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, zope_i18nmessageid 5, zope_schema 6, zope_testrunner 7, manuel 8}: 9 10buildPythonPackage rec { 11 pname = "zope.configuration"; 12 version = "4.3.1"; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "6e16747f9fd6b9d8f09d78edf2a6f539cad0fa4ad49d8deb9cf63447cc4168e1"; 17 }; 18 19 checkInputs = [ zope_testrunner manuel ]; 20 21 propagatedBuildInputs = [ zope_i18nmessageid zope_schema ]; 22 23 # Need to investigate how to run the tests with zope-testrunner 24 doCheck = false; 25 26 meta = with stdenv.lib; { 27 description = "Zope Configuration Markup Language (ZCML)"; 28 homepage = https://github.com/zopefoundation/zope.configuration; 29 license = licenses.zpl20; 30 maintainers = with maintainers; [ goibhniu ]; 31 }; 32 33}