Files
nixpkgs/pkgs/development/python-modules/dogpile-cache/default.nix
T
2025-09-23 05:15:05 +00:00

47 lines
795 B
Nix

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