nixpkgs/pkgs/development/python-modules/toolz/default.nix
2021-11-30 18:52:46 -08:00

25 lines
523 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "toolz";
version = "0.11.2";
src = fetchPypi {
inherit pname version;
sha256 = "6b312d5e15138552f1bda8a4e66c30e236c831b612b2bf0005f8a1df10a4bc33";
};
checkInputs = [ pytestCheckHook ];
meta = with lib; {
homepage = "https://github.com/pytoolz/toolz";
description = "List processing tools and functional utilities";
license = licenses.bsd3;
maintainers = with maintainers; [ fridh ];
};
}