Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / jaraco-functools / default.nix
blob0cc2fa124db50d538fb2c4c355b122b05c5b0282
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , more-itertools
5 , setuptools-scm
6 }:
8 buildPythonPackage rec {
9   pname = "jaraco-functools";
10   version = "3.9.0";
11   format = "pyproject";
13   src = fetchPypi {
14     pname = "jaraco.functools";
15     inherit version;
16     hash = "sha256-ixN7D+rMF/70us7gTAEcnobyNBCZyHCh0S0743sypjg=";
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   };