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
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
{ lib
2
+
, buildPythonPackage
3
+
, fetchPypi
4
+
, setuptools
5
+
, pytestCheckHook
6
+
}:
7
+
8
+
buildPythonPackage rec {
9
+
pname = "zope-cachedescriptors";
10
+
version = "4.3.1";
11
+
12
+
format = "setuptools";
13
+
14
+
src = fetchPypi {
15
+
pname = "zope.cachedescriptors";
16
+
inherit version;
17
+
sha256 = "1f4d1a702f2ea3d177a1ffb404235551bb85560100ec88e6c98691734b1d194a";
18
+
};
19
+
20
+
propagatedBuildInputs = [
21
+
setuptools
22
+
];
23
+
24
+
checkInputs = [
25
+
pytestCheckHook
26
+
];
27
+
28
+
pytestFlagsArray = [
29
+
"src/zope/cachedescriptors/tests.py"
30
+
];
31
+
32
+
pythonImportsCheck = [ "zope.cachedescriptors" ];
33
+
34
+
meta = {
35
+
description = "Method and property caching decorators";
36
+
homepage = "https://github.com/zopefoundation/zope.cachedescriptors";
37
+
license = lib.licenses.zpl21;
38
+
maintainers = with lib.maintainers; [ dotlambda ];
39
+
};
40
+
}
+2
pkgs/top-level/python-packages.nix
···
11633
11634
zope_broken = callPackage ../development/python-modules/zope_broken { };
11635
0
0
11636
zope_component = callPackage ../development/python-modules/zope_component { };
11637
11638
zope_configuration = callPackage ../development/python-modules/zope_configuration { };
···
11633
11634
zope_broken = callPackage ../development/python-modules/zope_broken { };
11635
11636
+
zope-cachedescriptors = callPackage ../development/python-modules/zope-cachedescriptors { };
11637
+
11638
zope_component = callPackage ../development/python-modules/zope_component { };
11639
11640
zope_configuration = callPackage ../development/python-modules/zope_configuration { };