ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / toolz / default.nix
blob6ca48fd1ffb24deb58f7b3acfe05629cf3fe0e93
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     sha256 = "sha256-iMVwhhxEDuPy9gN8RlRhMij/QMk6bCXg66cNFygsYZQ=";
14   };
16   checkInputs = [ 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   };