python: cached-property: 1.3.0 -> 1.3.1
This commit is contained in:
parent
5129a572c7
commit
21f377bb28
|
@ -0,0 +1,25 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, freezegun
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "cached-property";
|
||||||
|
version = "1.3.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "6562f0be134957547421dda11640e8cadfa7c23238fc4e0821ab69efdb1095f3";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [ freezegun ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "A decorator for caching properties in classes";
|
||||||
|
homepage = https://github.com/pydanny/cached-property;
|
||||||
|
license = lib.licenses.bsd3;
|
||||||
|
platforms = lib.platforms.unix;
|
||||||
|
maintainers = with lib.maintainers; [ ericsagnes ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1312,25 +1312,7 @@ in {
|
||||||
propagatedBuildInputs = with self; [ boto crcmod psutil ];
|
propagatedBuildInputs = with self; [ boto crcmod psutil ];
|
||||||
};
|
};
|
||||||
|
|
||||||
cached-property = buildPythonPackage rec {
|
cached-property = callPackage ../development/python-modules/cached-property { };
|
||||||
version = "1.3.0";
|
|
||||||
name = "cached-property-${version}";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/c/cached-property/${name}.tar.gz";
|
|
||||||
sha256 = "10dwi3s6f154ag9dvqy5jiwp31fs57lbxjcjgn4cwvi8qyqpi3j5";
|
|
||||||
};
|
|
||||||
|
|
||||||
buildInputs = with self; [ freezegun ];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "A decorator for caching properties in classes";
|
|
||||||
homepage = https://github.com/pydanny/cached-property;
|
|
||||||
license = licenses.bsd3;
|
|
||||||
platforms = platforms.unix;
|
|
||||||
maintainers = with maintainers; [ ericsagnes ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
caffe = pkgs.caffe.override {
|
caffe = pkgs.caffe.override {
|
||||||
python = self.python;
|
python = self.python;
|
||||||
|
|
Loading…
Reference in New Issue