depot/third_party/nixpkgs/pkgs/development/python-modules/aiohttp-client-cache/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

33 lines
697 B
Nix

{
lib,
fetchPypi,
buildPythonPackage,
poetry-core,
aiohttp,
attrs,
itsdangerous,
url-normalize,
}:
buildPythonPackage rec {
pname = "aiohttp_client_cache";
version = "0.11.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-B2b/9O2gVJjHUlN0pYeBDcwsy3slaAnd5SroeQqEU+s=";
};
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [
aiohttp
attrs
itsdangerous
url-normalize
];
meta = with lib; {
description = "Async persistent cache for aiohttp requests";
homepage = "https://pypi.org/project/aiohttp-client-cache/";
license = licenses.mit;
maintainers = with maintainers; [ seirl ];
};
}