about summary refs log tree commit diff
path: root/pkgs/development/python-modules/zope_component/default.nix
blob: 8b51253fe929078d78e552854c630a4dcfbd8ca4 (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
{ stdenv
, buildPythonPackage
, fetchPypi
, zope_configuration
, zope_event
, zope_i18nmessageid
, zope_interface
, zope_testing
}:

buildPythonPackage rec {
  pname = "zope.component";
  version = "4.2.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1gzbr0j6c2h0cqnpi2cjss38wrz1bcwx8xahl3vykgz5laid15l6";
  };

  propagatedBuildInputs = [ zope_configuration zope_event zope_i18nmessageid zope_interface zope_testing ];

  # ignore tests because of a circular dependency on zope_security
  doCheck = false;

  meta = with stdenv.lib; {
    homepage = https://github.com/zopefoundation/zope.component;
    description = "Zope Component Architecture";
    license = licenses.zpl20;
    maintainers = with maintainers; [ goibhniu ];
  };

}