tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python.pkgs.cached-property: 1.4.0 -> 1.4.2
Robert Schütz
7 years ago
e0700462
1cdcc192
+2
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
cached-property
default.nix
+2
-3
pkgs/development/python-modules/cached-property/default.nix
···
7
7
8
8
buildPythonPackage rec {
9
9
pname = "cached-property";
10
10
-
version = "1.4.0";
10
10
+
version = "1.4.2";
11
11
12
12
# conftest.py is missing in PyPI tarball
13
13
-
# https://github.com/pydanny/cached-property/pull/87
14
13
src = fetchFromGitHub {
15
14
owner = "pydanny";
16
15
repo = pname;
17
16
rev = version;
18
18
-
sha256 = "0w7709grs4yqhfbnn7lva2fgyphvh43xcfqhi95lhh8sjad3xwkw";
17
17
+
sha256 = "0gjmgfilhljkx2b60cjikwh55jg2jwxhwi8hgkrzdnzk465ywhrw";
19
18
};
20
19
21
20
checkInputs = [ pytest freezegun ];