Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / jaraco-functools / default.nix
blob28a7d64e11f96b39c4f3b7ac2c7820502a2fcf4d
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , more-itertools
5 , setuptools-scm
6 }:
8 buildPythonPackage rec {
9   pname = "jaraco-functools";
10   version = "4.0.0";
11   format = "pyproject";
13   src = fetchPypi {
14     pname = "jaraco.functools";
15     inherit version;
16     hash = "sha256-wnnLJMk9aU73Jw+XDUmcq004E/TggnP5U5hlGmNPCSU=";
17   };
19   nativeBuildInputs = [ setuptools-scm ];
21   propagatedBuildInputs = [
22     more-itertools
23   ];
25   doCheck = false;
27   pythonNamespaces = [ "jaraco" ];
29   pythonImportsCheck = [ "jaraco.functools" ];
31   meta = with lib; {
32     description = "Additional functools in the spirit of stdlib's functools";
33     homepage = "https://github.com/jaraco/jaraco.functools";
34     license = licenses.mit;
35     maintainers = with maintainers; [ ];
36   };