about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/zope_lifecycleevent/default.nix
blob: 6494aa7a71afc89f9aa72ad0ce45875d5b8f4ff1 (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
34
35
36
37
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
, zope_event
, zope_component
, zope_interface
}:

buildPythonPackage rec {
  pname = "zope.lifecycleevent";
  version = "4.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "7ec39087cc1524e55557e7d9dc6295eb1b95b09b125e293c0e2dd068574f0aee";
  };

  propagatedBuildInputs = [ zope_event zope_component ];

  # namespace colides with local directory
  doCheck = false;

  # zope uses pep 420 namespaces for python3, doesn't work with nix + python2
  pythonImportsCheck = stdenv.lib.optionals isPy3k [
    "zope.lifecycleevent"
    "zope.interface"
  ];

  meta = with stdenv.lib; {
    homepage = "https://github.com/zopefoundation/zope.lifecycleevent";
    description = "Object life-cycle events";
    license = licenses.zpl20;
    maintainers = with maintainers; [ goibhniu ];
  };

}