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