python312Packages.fnllm: 0.0.11 -> 0.0.12 (#364582)
[NixPkgs.git] / pkgs / development / python-modules / zict / default.nix
blobb2305bc243fdcd3140dfbe0548803999d69419a8
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pytestCheckHook,
6   pytest-asyncio,
7   pytest-repeat,
8   pytest-timeout,
9   pythonOlder,
10   setuptools,
13 buildPythonPackage rec {
14   pname = "zict";
15   version = "3.0.0";
16   format = "pyproject";
18   disabled = pythonOlder "3.6";
20   src = fetchPypi {
21     inherit pname version;
22     hash = "sha256-4yHiY7apeq/AeQw8+zwEZWtwZuZzjDf//MqV2APJ+6U=";
23   };
25   nativeBuildInputs = [ setuptools ];
27   nativeCheckInputs = [
28     pytest-asyncio
29     pytestCheckHook
30     pytest-repeat
31     pytest-timeout
32   ];
34   meta = with lib; {
35     description = "Mutable mapping tools";
36     homepage = "https://github.com/dask/zict";
37     license = licenses.bsd3;
38     maintainers = with maintainers; [ teh ];
39   };