1{ lib
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.4.1";
13
14 src = fetchPypi {
15 inherit pname version;
16 hash = "sha256-giPqSvU5hmznqccwrH6xjlHRfrUVk6p3c7NZPI1tdgg=";
17 };
18
19 nativeCheckInputs = [ 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 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}