Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / toolz / default.nix
blobc6c9ecf31d84ff5fcee9e0026e7e246ebd3f5da0
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 }:
7 buildPythonPackage rec {
8   pname = "toolz";
9   version = "0.12.0";
11   src = fetchPypi {
12     inherit pname version;
13     hash = "sha256-iMVwhhxEDuPy9gN8RlRhMij/QMk6bCXg66cNFygsYZQ=";
14   };
16   nativeCheckInputs = [ pytestCheckHook ];
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   };