ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / zope_configuration / default.nix
blobb8d364b95ebbcf7981d50c3f19d51fee2a253584
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , zope_i18nmessageid
5 , zope_schema
6 , zope_testrunner
7 , manuel
8 }:
10 buildPythonPackage rec {
11   pname = "zope.configuration";
12   version = "4.4.1";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "sha256-giPqSvU5hmznqccwrH6xjlHRfrUVk6p3c7NZPI1tdgg=";
17   };
19   checkInputs = [ zope_testrunner manuel ];
21   propagatedBuildInputs = [ zope_i18nmessageid zope_schema ];
23   # Need to investigate how to run the tests with zope-testrunner
24   doCheck = false;
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   };