at 22.05-pre 567 B view raw
1{ lib, buildPythonPackage, fetchPypi 2, pytest, heapdict, pythonOlder }: 3 4buildPythonPackage rec { 5 pname = "zict"; 6 version = "2.0.0"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "8e2969797627c8a663575c2fc6fcb53a05e37cdb83ee65f341fc6e0c3d0ced16"; 11 }; 12 13 disabled = pythonOlder "3.6"; 14 15 buildInputs = [ pytest ]; 16 propagatedBuildInputs = [ heapdict ]; 17 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 }; 24}