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