nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib
2, buildPythonPackage
3, fetchPypi
4, pytestCheckHook
5}:
6
7buildPythonPackage rec {
8 pname = "toolz";
9 version = "0.11.2";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "6b312d5e15138552f1bda8a4e66c30e236c831b612b2bf0005f8a1df10a4bc33";
14 };
15
16 checkInputs = [ 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}