Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 22 lines 517 B view raw
1{ stdenv, buildPythonPackage, fetchPypi 2, pytest, heapdict }: 3 4buildPythonPackage rec { 5 pname = "zict"; 6 version = "1.0.0"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "04532600mnsvzv43l2jvjrn7sflg0wkjqzy7nj7m3vvxm5gd4kg3"; 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}