Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 22 lines 531 B view raw
1{ stdenv, buildPythonPackage, fetchPypi 2, pytest, heapdict }: 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 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}