nixpkgs/pkgs/development/python-modules/zict/default.nix

23 lines
529 B
Nix
Raw Normal View History

2018-04-03 13:33:13 +02:00
{ stdenv, buildPythonPackage, fetchPypi
, pytest, heapdict }:
buildPythonPackage rec {
pname = "zict";
2019-04-16 19:15:42 +02:00
version = "0.1.4";
2018-04-03 13:33:13 +02:00
src = fetchPypi {
inherit pname version;
2019-04-16 19:15:42 +02:00
sha256 = "a7838b2f21bc06b7e3db5c64ffa6642255a5f7c01841660b3388a9840e101f99";
2018-04-03 13:33:13 +02:00
};
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 ];
};
}