13 buildPythonPackage rec {
14 pname = "backports-cached-property";
18 disabled = pythonOlder "3.8";
20 src = fetchFromGitHub {
21 owner = "penguinolog";
22 repo = "backports.cached_property";
24 hash = "sha256-rdgKbVQaELilPrN4ve8RbbaLiT14Xex0esy5vUX2ZBc=";
27 nativeBuildInputs = [ setuptools-scm ];
29 propagatedBuildInputs = [ wheel ];
37 pythonImportsCheck = [ "backports.cached_property" ];
40 description = "Python 3.8 functools.cached_property backport to python 3.6";
41 homepage = "https://github.com/penguinolog/backports.cached_property";
42 license = with licenses; [ mit ];
43 maintainers = with maintainers; [ izorkin ];