fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
33 lines
702 B
Nix
33 lines
702 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;
|
|
sha256 = "sha256-B2b/9O2gVJjHUlN0pYeBDcwsy3slaAnd5SroeQqEU+s=";
|
|
};
|
|
nativeBuildInputs = [ poetry-core ];
|
|
propagatedBuildInputs = [
|
|
aiohttp
|
|
attrs
|
|
itsdangerous
|
|
url-normalize
|
|
];
|
|
meta = with lib; {
|
|
description = "An async persistent cache for aiohttp requests";
|
|
homepage = "https://pypi.org/project/aiohttp-client-cache/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ seirl ];
|
|
};
|
|
}
|