2018-04-03 12:33:13 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
2020-09-20 22:29:52 +01:00
|
|
|
, 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
|
|
|
};
|
|
|
|
|
2020-09-20 22:29:52 +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.";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/dask/zict";
|
2018-04-03 12:33:13 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ teh ];
|
|
|
|
};
|
|
|
|
}
|