Files
nixpkgs/pkgs/development/python-modules/dogpile-cache/default.nix
T
Martin Weinelt bfd0f2573e python3Packages.dogpile-cache: 1.4.1 -> 1.5.0
This commit was automatically generated using update-python-libraries.
2026-02-01 16:43:12 +01:00

44 lines
741 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
pytestCheckHook,
mako,
decorator,
stevedore,
typing-extensions,
}:
buildPythonPackage rec {
pname = "dogpile-cache";
version = "1.5.0";
pyproject = true;
src = fetchPypi {
pname = "dogpile_cache";
inherit version;
hash = "sha256-hJxVc8mjjxVc1BcxA8cCtjft4DYcEuhkh2h30M0SXuw=";
};
build-system = [ setuptools ];
dependencies = [
decorator
stevedore
typing-extensions
];
nativeCheckInputs = [
pytestCheckHook
mako
];
meta = {
description = "Caching front-end based on the Dogpile lock";
homepage = "https://github.com/sqlalchemy/dogpile.cache";
license = lib.licenses.bsd3;
maintainers = [ ];
};
}