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