ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / zict / default.nix
blobfa4122a7e8c6729e19078b8ae7f605d56a5955c7
1 { lib, buildPythonPackage, fetchPypi
2 , pytest, heapdict, pythonOlder }:
4 buildPythonPackage rec {
5   pname = "zict";
6   version = "2.2.0";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "sha256-1zZsLiKTMUES3PJDIQhCime5J7AABWGf7vwxDRLYM/M=";
11   };
13   disabled = pythonOlder "3.6";
15   buildInputs = [ pytest ];
16   propagatedBuildInputs = [ heapdict ];
18   meta = with lib; {
19     description = "Mutable mapping tools.";
20     homepage = "https://github.com/dask/zict";
21     license = licenses.bsd3;
22     maintainers = with maintainers; [ teh ];
23   };