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

25 lines
577 B
Nix
Raw Normal View History

2018-04-03 12:33:13 +01:00
{ stdenv, buildPythonPackage, fetchPypi
, pytest, heapdict, pythonOlder }:
2018-04-03 12:33:13 +01:00
buildPythonPackage rec {
pname = "zict";
2020-06-06 07:47:38 +01:00
version = "2.0.0";
2018-04-03 12:33:13 +01:00
src = fetchPypi {
inherit pname version;
2020-06-06 07:47:38 +01:00
sha256 = "8e2969797627c8a663575c2fc6fcb53a05e37cdb83ee65f341fc6e0c3d0ced16";
2018-04-03 12:33:13 +01:00
};
disabled = pythonOlder "3.6";
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 ];
};
}