Files
nixpkgs/pkgs/development/python-modules/aiohttp-client-cache/default.nix
T
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

34 lines
699 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 = "Async persistent cache for aiohttp requests";
homepage = "https://pypi.org/project/aiohttp-client-cache/";
license = licenses.mit;
maintainers = with maintainers; [ seirl ];
};
}