Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / jaraco_functools / default.nix
blobeb176d0d85751c00a799f04f3b63893a47610f7d
1 { lib, buildPythonPackage, fetchPypi
2 , setuptools_scm, toml
3 , more-itertools, backports_functools_lru_cache }:
5 buildPythonPackage rec {
6   pname = "jaraco.functools";
7   version = "3.0.1";
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "9fedc4be3117512ca3e03e1b2ffa7a6a6ffa589bfb7d02bfb324e55d493b94f4";
12   };
14   nativeBuildInputs = [ setuptools_scm toml ];
16   propagatedBuildInputs = [ more-itertools backports_functools_lru_cache ];
18   doCheck = false;
20   pythonNamespaces = [ "jaraco" ];
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   };