1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 setuptools,
6 pytestCheckHook,
7}:
8
9buildPythonPackage rec {
10 pname = "toolz";
11 version = "1.0.0";
12 pyproject = true;
13
14 src = fetchPypi {
15 inherit pname version;
16 hash = "sha256-LIbj2aBHmKxVZ5O87YOIFilqLwhQF2ZOSZXLQKEEegI=";
17 };
18
19 build-system = [ setuptools ];
20
21 nativeCheckInputs = [ pytestCheckHook ];
22
23 disabledTests = [
24 # https://github.com/pytoolz/toolz/issues/577
25 "test_inspect_wrapped_property"
26 ];
27
28 meta = with lib; {
29 homepage = "https://github.com/pytoolz/toolz";
30 changelog = "https://github.com/pytoolz/toolz/releases/tag/${version}";
31 description = "List processing tools and functional utilities";
32 license = licenses.bsd3;
33 };
34}