1 { lib, buildPythonPackage, fetchPypi
2 , pytest, heapdict, pythonOlder }:
4 buildPythonPackage rec {
10 sha256 = "sha256-1zZsLiKTMUES3PJDIQhCime5J7AABWGf7vwxDRLYM/M=";
13 disabled = pythonOlder "3.6";
15 buildInputs = [ pytest ];
16 propagatedBuildInputs = [ heapdict ];
19 description = "Mutable mapping tools.";
20 homepage = "https://github.com/dask/zict";
21 license = licenses.bsd3;
22 maintainers = with maintainers; [ teh ];