about summary refs log tree commit diff
path: root/pkgs/development/python-modules/zope-interface/default.nix
blob: 3cc208094d26b69a7c6185ac5821f6f5c4f6fc9f (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
{
  lib,
  buildPythonPackage,
  fetchPypi,
  zope-event,
}:

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

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-v+4fP/YhQ4GUmeNI9bin86oCWfmspeDdrnOR0Fnc5nE=";
  };

  propagatedBuildInputs = [ zope-event ];

  doCheck = false; # Circular deps.

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