blob: c94e4a0366c5607a9225592f476780e18471ab8f (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
zope-event,
}:
buildPythonPackage rec {
pname = "zope.interface";
version = "6.4.post2";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-HCB+b239V0mib1pf2WZgLWuCTsANLfhKfpqSTokzZU4=";
};
build-system = [ setuptools ];
dependencies = [ zope-event ];
doCheck = false; # Circular deps.
meta = with lib; {
changelog = "https://github.com/zopefoundation/zope.interface/blob/${version}/CHANGES.rst";
description = "Zope.Interface";
homepage = "https://github.com/zopefoundation/zope.interface";
license = licenses.zpl20;
maintainers = [ maintainers.goibhniu ];
};
}
|