tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python310Packages.zope-cachedescriptors: init at 4.3.1
Robert Schütz
3 years ago
9fcfdda1
51b2b750
+42
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
zope-cachedescriptors
default.nix
top-level
python-packages.nix
+40
pkgs/development/python-modules/zope-cachedescriptors/default.nix
···
1
1
+
{ lib
2
2
+
, buildPythonPackage
3
3
+
, fetchPypi
4
4
+
, setuptools
5
5
+
, pytestCheckHook
6
6
+
}:
7
7
+
8
8
+
buildPythonPackage rec {
9
9
+
pname = "zope-cachedescriptors";
10
10
+
version = "4.3.1";
11
11
+
12
12
+
format = "setuptools";
13
13
+
14
14
+
src = fetchPypi {
15
15
+
pname = "zope.cachedescriptors";
16
16
+
inherit version;
17
17
+
sha256 = "1f4d1a702f2ea3d177a1ffb404235551bb85560100ec88e6c98691734b1d194a";
18
18
+
};
19
19
+
20
20
+
propagatedBuildInputs = [
21
21
+
setuptools
22
22
+
];
23
23
+
24
24
+
checkInputs = [
25
25
+
pytestCheckHook
26
26
+
];
27
27
+
28
28
+
pytestFlagsArray = [
29
29
+
"src/zope/cachedescriptors/tests.py"
30
30
+
];
31
31
+
32
32
+
pythonImportsCheck = [ "zope.cachedescriptors" ];
33
33
+
34
34
+
meta = {
35
35
+
description = "Method and property caching decorators";
36
36
+
homepage = "https://github.com/zopefoundation/zope.cachedescriptors";
37
37
+
license = lib.licenses.zpl21;
38
38
+
maintainers = with lib.maintainers; [ dotlambda ];
39
39
+
};
40
40
+
}
+2
pkgs/top-level/python-packages.nix
···
11633
11633
11634
11634
zope_broken = callPackage ../development/python-modules/zope_broken { };
11635
11635
11636
11636
+
zope-cachedescriptors = callPackage ../development/python-modules/zope-cachedescriptors { };
11637
11637
+
11636
11638
zope_component = callPackage ../development/python-modules/zope_component { };
11637
11639
11638
11640
zope_configuration = callPackage ../development/python-modules/zope_configuration { };