summary refs log tree commit diff
path: root/pkgs/development/python-modules/zope_configuration/default.nix
blob: 664aa0af6e88b14f7ed54d2fc1f66192618b1540 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ stdenv
, buildPythonPackage
, fetchPypi
, zope_i18nmessageid
, zope_schema
, zope_testrunner
, manuel
}:

buildPythonPackage rec {
  pname = "zope.configuration";
  version = "4.3.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "6e16747f9fd6b9d8f09d78edf2a6f539cad0fa4ad49d8deb9cf63447cc4168e1";
  };

  checkInputs = [ zope_testrunner manuel ];

  propagatedBuildInputs = [ zope_i18nmessageid zope_schema ];

  # Need to investigate how to run the tests with zope-testrunner
  doCheck = false;

  meta = with stdenv.lib; {
    description = "Zope Configuration Markup Language (ZCML)";
    homepage = "https://github.com/zopefoundation/zope.configuration";
    license = licenses.zpl20;
    maintainers = with maintainers; [ goibhniu ];
  };

}