aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/zope_interface/default.nix
blob: 1d86d6a8f14e1e355eee16f61a17447f1e5c77b2 (plain)
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
{ stdenv
, buildPythonPackage
, fetchPypi
, zope_event
}:

buildPythonPackage rec {
  pname = "zope.interface";
  version = "5.1.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "c9c8e53a5472b77f6a391b515c771105011f4b40740ce53af8428d1c8ca20004";
  };

  propagatedBuildInputs = [ zope_event ];

  doCheck = false; # Circular deps.

  meta = with stdenv.lib; {
    description = "Zope.Interface";
    homepage = "https://zope.org/Products/ZopeInterface";
    license = licenses.zpl20;
    maintainers = [ maintainers.goibhniu ];
  };
}