depot/third_party/nixpkgs/pkgs/development/python-modules/zict/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

40 lines
727 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
pytest-asyncio,
pytest-repeat,
pytest-timeout,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "zict";
version = "3.0.0";
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-4yHiY7apeq/AeQw8+zwEZWtwZuZzjDf//MqV2APJ+6U=";
};
nativeBuildInputs = [ setuptools ];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
pytest-repeat
pytest-timeout
];
meta = with lib; {
description = "Mutable mapping tools";
homepage = "https://github.com/dask/zict";
license = licenses.bsd3;
maintainers = with maintainers; [ teh ];
};
}