Files
Sam Estep 7553c97413 python3Packages.async-cache: 1.1.1 -> 2.0.3
Assisted-by: Claude:opus-4.8
2026-06-02 12:52:20 -04:00

34 lines
696 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pytestCheckHook,
}:
buildPythonPackage (finalAttrs: {
pname = "async-cache";
version = "2.0.3";
pyproject = true;
src = fetchFromGitHub {
owner = "iamsinghrajat";
repo = "async-cache";
tag = finalAttrs.version;
hash = "sha256-3SPepAlXJxufTgNqwxh/c2jhL/j9/omqOZElHhDiIIw=";
};
build-system = [ setuptools ];
pythonImportsCheck = [ "cache" ];
nativeCheckInputs = [ pytestCheckHook ];
meta = {
description = "Caching solution for asyncio";
homepage = "https://github.com/iamsinghrajat/async-cache";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.lukegb ];
};
})