1 { lib, buildPythonPackage, fetchPypi
3 , more-itertools, backports_functools_lru_cache }:
5 buildPythonPackage rec {
6 pname = "jaraco.functools";
10 inherit pname version;
11 sha256 = "9fedc4be3117512ca3e03e1b2ffa7a6a6ffa589bfb7d02bfb324e55d493b94f4";
14 nativeBuildInputs = [ setuptools_scm toml ];
16 propagatedBuildInputs = [ more-itertools backports_functools_lru_cache ];
20 pythonNamespaces = [ "jaraco" ];
23 description = "Additional functools in the spirit of stdlib's functools";
24 homepage = "https://github.com/jaraco/jaraco.functools";
25 license = licenses.mit;