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

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "69c27debad9bdacd9ce9b735dad382142281ac770c4a432b533d6d65c4614bcf";
  };

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

}