at 18.09-beta 529 B view raw
1{ stdenv, buildPythonPackage, fetchPypi 2, pytest, heapdict }: 3 4buildPythonPackage rec { 5 pname = "zict"; 6 version = "0.1.3"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "63377f063086fc92e5c16e4d02162c571f6470b9e796cf3411ef9e815c96b799"; 11 }; 12 13 buildInputs = [ pytest ]; 14 propagatedBuildInputs = [ heapdict ]; 15 16 meta = with stdenv.lib; { 17 description = "Mutable mapping tools."; 18 homepage = https://github.com/dask/zict; 19 license = licenses.bsd3; 20 maintainers = with maintainers; [ teh ]; 21 }; 22}