zict: init at 0.0.3

This commit is contained in:
Tom Hunger 2016-11-02 18:49:24 +00:00
parent 2e3b9a063a
commit 45d7aa6c32
1 changed files with 20 additions and 0 deletions

View File

@ -5411,6 +5411,26 @@ in {
};
};
zict = buildPythonPackage rec {
name = "zict-${version}";
version = "0.0.3";
src = pkgs.fetchurl {
url = "mirror://pypi/z/zict/${name}.tar.gz";
sha256 = "1xsrlzrih0qmxvxqhk2c5vhzxirf509fppzdfyardl50jpsllni6";
};
propagatedBuildInputs = with self; [ heapdict ];
meta = {
description = "Mutable mapping tools.";
homepage = https://github.com/dask/zict;
license = licenses.bsd3;
maintainers = with maintainers; [ teh ];
};
};
distributed = buildPythonPackage rec {
name = "distributed-${version}";