blob: cb5717d8abef7b9993c0349a14357533d3499e76 (
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
33
34
35
36
37
38
39
|
{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
setuptools,
zope-interface,
}:
buildPythonPackage rec {
pname = "zope-proxy";
version = "5.2";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "zope.proxy";
inherit version;
hash = "sha256-93fVbCqy/PQNAmraHmfx45z2MY497rmhzVCH/MsfKG4=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [ zope-interface ];
# circular deps
doCheck = false;
pythonImportsCheck = [ "zope.proxy" ];
meta = with lib; {
homepage = "https://github.com/zopefoundation/zope.proxy";
description = "Generic Transparent Proxies";
changelog = "https://github.com/zopefoundation/zope.proxy/blob/${version}/CHANGES.rst";
license = licenses.zpl21;
maintainers = with maintainers; [ goibhniu ];
};
}
|