1{ lib
2, buildPythonPackage
3, fetchPypi
4, pytestCheckHook
5}:
6
7buildPythonPackage rec {
8 pname = "toolz";
9 version = "0.12.0";
10
11 src = fetchPypi {
12 inherit pname version;
13 hash = "sha256-iMVwhhxEDuPy9gN8RlRhMij/QMk6bCXg66cNFygsYZQ=";
14 };
15
16 nativeCheckInputs = [ pytestCheckHook ];
17
18 meta = with lib; {
19 homepage = "https://github.com/pytoolz/toolz";
20 description = "List processing tools and functional utilities";
21 license = licenses.bsd3;
22 maintainers = with maintainers; [ fridh ];
23 };
24}