nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 pytestCheckHook,
6 pytest-asyncio,
7 pytest-repeat,
8 pytest-timeout,
9 setuptools,
10}:
11
12buildPythonPackage rec {
13 pname = "zict";
14 version = "3.0.0";
15 pyproject = true;
16
17 src = fetchPypi {
18 inherit pname version;
19 hash = "sha256-4yHiY7apeq/AeQw8+zwEZWtwZuZzjDf//MqV2APJ+6U=";
20 };
21
22 nativeBuildInputs = [ setuptools ];
23
24 nativeCheckInputs = [
25 pytest-asyncio
26 pytestCheckHook
27 pytest-repeat
28 pytest-timeout
29 ];
30
31 meta = {
32 description = "Mutable mapping tools";
33 homepage = "https://github.com/dask/zict";
34 license = lib.licenses.bsd3;
35 maintainers = with lib.maintainers; [ teh ];
36 };
37}