summary refs log tree commit diff
path: root/pkgs/development/python-modules/zope_event/default.nix
blob: cc82da7ea9a192277f43ebeabf05110a5889d3a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "zope.event";
  version = "4.5.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "5e76517f5b9b119acf37ca8819781db6c16ea433f7e2062c4afc2b6fbedb1330";
  };

  meta = with lib; {
    description = "An event publishing system";
    homepage = "https://pypi.python.org/pypi/zope.event";
    license = licenses.zpl20;
    maintainers = with maintainers; [ goibhniu ];
  };

}