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

23 lines
529 B
Nix
Raw Normal View History

2018-04-03 12:33:13 +01:00
{ stdenv, buildPythonPackage, fetchPypi
, pytest, heapdict }:
buildPythonPackage rec {
pname = "zict";
2018-04-04 19:19:34 +01:00
version = "0.1.3";
2018-04-03 12:33:13 +01:00
src = fetchPypi {
inherit pname version;
2018-04-04 19:19:34 +01:00
sha256 = "63377f063086fc92e5c16e4d02162c571f6470b9e796cf3411ef9e815c96b799";
2018-04-03 12:33:13 +01: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 ];
};
}