depot/third_party/nixpkgs/pkgs/development/python-modules/zict/default.nix
Default email 2ce89355c3 Project import generated by Copybara.
GitOrigin-RevId: 22a81aa5fc15b2d41b12f7160a71cd4a9f3c3fa1
2020-06-15 17:56:04 +02:00

22 lines
531 B
Nix

{ stdenv, buildPythonPackage, fetchPypi
, pytest, heapdict }:
buildPythonPackage rec {
pname = "zict";
version = "2.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "8e2969797627c8a663575c2fc6fcb53a05e37cdb83ee65f341fc6e0c3d0ced16";
};
buildInputs = [ pytest ];
propagatedBuildInputs = [ heapdict ];
meta = with stdenv.lib; {
description = "Mutable mapping tools.";
homepage = "https://github.com/dask/zict";
license = licenses.bsd3;
maintainers = with maintainers; [ teh ];
};
}