at 24.05-pre 723 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pytestCheckHook 5, pytest-asyncio 6, pytest-repeat 7, pytest-timeout 8, pythonOlder 9, setuptools 10}: 11 12buildPythonPackage rec { 13 pname = "zict"; 14 version = "3.0.0"; 15 format = "pyproject"; 16 17 disabled = pythonOlder "3.6"; 18 19 src = fetchPypi { 20 inherit pname version; 21 hash = "sha256-4yHiY7apeq/AeQw8+zwEZWtwZuZzjDf//MqV2APJ+6U="; 22 }; 23 24 nativeBuildInputs = [ 25 setuptools 26 ]; 27 28 nativeCheckInputs = [ 29 pytest-asyncio 30 pytestCheckHook 31 pytest-repeat 32 pytest-timeout 33 ]; 34 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 }; 41}