1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-23 01:41:05 +03:00
nixpkgs/pkgs/development/python-modules/toolz/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
523 B
Nix
Raw Normal View History

2017-10-29 12:31:48 +01:00
{ lib
, buildPythonPackage
, fetchPypi
2021-11-28 23:53:42 -08:00
, pytestCheckHook
2017-10-29 12:31:48 +01:00
}:
buildPythonPackage rec {
2017-10-29 12:31:48 +01:00
pname = "toolz";
version = "0.11.2";
2017-10-29 12:31:48 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "6b312d5e15138552f1bda8a4e66c30e236c831b612b2bf0005f8a1df10a4bc33";
2017-10-29 12:31:48 +01:00
};
2021-11-28 23:53:42 -08:00
checkInputs = [ pytestCheckHook ];
2017-10-29 12:31:48 +01:00
meta = with lib; {
homepage = "https://github.com/pytoolz/toolz";
2017-10-29 12:31:48 +01:00
description = "List processing tools and functional utilities";
license = licenses.bsd3;
maintainers = with maintainers; [ fridh ];
2017-10-29 12:31:48 +01:00
};
2018-06-27 13:12:57 -07:00
}