blob: d1e7891eee520bfbcff296534b38abb92e11fe0d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{ lib, buildPythonPackage, fetchPypi
, pytest, heapdict, pythonOlder }:
buildPythonPackage rec {
pname = "zict";
version = "2.2.0";
src = fetchPypi {
inherit pname version;
hash = "sha256-1zZsLiKTMUES3PJDIQhCime5J7AABWGf7vwxDRLYM/M=";
};
disabled = pythonOlder "3.6";
buildInputs = [ pytest ];
propagatedBuildInputs = [ heapdict ];
meta = with lib; {
description = "Mutable mapping tools.";
homepage = "https://github.com/dask/zict";
license = licenses.bsd3;
maintainers = with maintainers; [ teh ];
};
}
|