depot/third_party/nixpkgs/pkgs/development/python-modules/cached-property/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

31 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 ];
};
}