1{ lib
2, buildPythonPackage
3, fetchPypi
4, more-itertools
5, setuptools-scm
6}:
7
8buildPythonPackage rec {
9 pname = "jaraco-functools";
10 version = "3.9.0";
11 format = "pyproject";
12
13 src = fetchPypi {
14 pname = "jaraco.functools";
15 inherit version;
16 hash = "sha256-ixN7D+rMF/70us7gTAEcnobyNBCZyHCh0S0743sypjg=";
17 };
18
19 nativeBuildInputs = [ setuptools-scm ];
20
21 propagatedBuildInputs = [
22 more-itertools
23 ];
24
25 doCheck = false;
26
27 pythonNamespaces = [ "jaraco" ];
28
29 pythonImportsCheck = [ "jaraco.functools" ];
30
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 };
37}