Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / zict / default.nix
blob4bd3e7692283ee0f3399517f8b56415c68d7a164
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 , pytest-asyncio
6 , pytest-repeat
7 , pytest-timeout
8 , pythonOlder
9 , setuptools
12 buildPythonPackage rec {
13   pname = "zict";
14   version = "3.0.0";
15   format = "pyproject";
17   disabled = pythonOlder "3.6";
19   src = fetchPypi {
20     inherit pname version;
21     hash = "sha256-4yHiY7apeq/AeQw8+zwEZWtwZuZzjDf//MqV2APJ+6U=";
22   };
24   nativeBuildInputs = [
25     setuptools
26   ];
28   nativeCheckInputs = [
29     pytest-asyncio
30     pytestCheckHook
31     pytest-repeat
32     pytest-timeout
33   ];
35   meta = with lib; {
36     description = "Mutable mapping tools.";
37     homepage = "https://github.com/dask/zict";
38     license = licenses.bsd3;
39     maintainers = with maintainers; [ teh ];
40   };