1{ lib, buildPythonPackage, fetchPypi 2, setuptools_scm 3, more-itertools, backports_functools_lru_cache }: 4 5buildPythonPackage rec { 6 pname = "jaraco.functools"; 7 version = "1.20"; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "bad775f06e58bb8de5563bc2a8bf704168919e6779d6e849b1ca58b443e97f3b"; 12 }; 13 14 propagatedBuildInputs = [ more-itertools backports_functools_lru_cache ]; 15 16 doCheck = false; 17 18 buildInputs = [ setuptools_scm ]; 19 20 meta = with lib; { 21 description = "Additional functools in the spirit of stdlib's functools"; 22 homepage = https://github.com/jaraco/jaraco.functools; 23 license = licenses.mit; 24 }; 25}