mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
32 lines
718 B
Nix
32 lines
718 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pytestCheckHook
|
|
, freezegun
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cached-property";
|
|
version = "1.5.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "9fa5755838eecbb2d234c3aa390bd80fbd3ac6b6869109bfc1b499f7bd89a130";
|
|
};
|
|
|
|
checkInputs = [ pytestCheckHook freezegun ];
|
|
|
|
disabledTests = [
|
|
# https://github.com/pydanny/cached-property/issues/131
|
|
"test_threads_ttl_expiry"
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|