1{ lib
2, buildPythonPackage
3, fetchPypi
4, more-itertools
5, setuptools-scm
6}:
7
8buildPythonPackage rec {
9 pname = "jaraco.functools";
10 version = "3.5.1";
11 format = "pyproject";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "sha256-0K3PkXEKCFPv6fI6ePrVhr9n31cvDW2OD6NtKJrhwdk=";
16 };
17
18 nativeBuildInputs = [ setuptools-scm ];
19
20 propagatedBuildInputs = [
21 more-itertools
22 ];
23
24 doCheck = false;
25
26 pythonNamespaces = [ "jaraco" ];
27
28 pythonImportsCheck = [ "jaraco.functools" ];
29
30 meta = with lib; {
31 description = "Additional functools in the spirit of stdlib's functools";
32 homepage = "https://github.com/jaraco/jaraco.functools";
33 license = licenses.mit;
34 maintainers = with maintainers; [ ];
35 };
36}