python.pkgs.cached-property: 1.4.0 -> 1.4.2

This commit is contained in:
Robert Schütz 2018-04-09 14:50:00 +02:00
parent 1cdcc19218
commit e07004625a

View File

@ -7,15 +7,14 @@
buildPythonPackage rec {
pname = "cached-property";
version = "1.4.0";
version = "1.4.2";
# conftest.py is missing in PyPI tarball
# https://github.com/pydanny/cached-property/pull/87
src = fetchFromGitHub {
owner = "pydanny";
repo = pname;
rev = version;
sha256 = "0w7709grs4yqhfbnn7lva2fgyphvh43xcfqhi95lhh8sjad3xwkw";
sha256 = "0gjmgfilhljkx2b60cjikwh55jg2jwxhwi8hgkrzdnzk465ywhrw";
};
checkInputs = [ pytest freezegun ];