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

23 lines
519 B
Nix
Raw Normal View History

2018-04-03 12:33:13 +01:00
{ stdenv, buildPythonPackage, fetchPypi
, pytest, heapdict }:
buildPythonPackage rec {
pname = "zict";
version = "1.0.0";
2018-04-03 12:33:13 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "04532600mnsvzv43l2jvjrn7sflg0wkjqzy7nj7m3vvxm5gd4kg3";
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";
2018-04-03 12:33:13 +01:00
license = licenses.bsd3;
maintainers = with maintainers; [ teh ];
};
}