Unverified Commit 6a414628 authored by Silvan Mosberger's avatar Silvan Mosberger Committed by GitHub
Browse files

Merge pull request #267523 from seirl/aiohttp_client_cache_init

aiohttp-client-cache: init at 0.10.0
parents 96610305 11440690
Loading
Loading
Loading
Loading
+26 −0
Original line number Diff line number Diff line
{ lib, fetchPypi, python3, ...}:

python3.pkgs.buildPythonPackage rec {
  pname = "aiohttp_client_cache";
  version = "0.10.0";
  pyproject = true;
  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-FXU4QNqa8B8ZADmoEyJfd8gsUDI0HEjIR9B2CBP55wU=";
  };
  nativeBuildInputs = with python3.pkgs; [
    poetry-core
  ];
  propagatedBuildInputs = with python3.pkgs; [
    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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -228,6 +228,8 @@ self: super: with self; {
  aiohttp-basicauth = callPackage ../development/python-modules/aiohttp-basicauth { };
  aiohttp-client-cache = callPackage ../development/python-modules/aiohttp-client-cache { };
  aiohttp-cors = callPackage ../development/python-modules/aiohttp-cors { };
  aiohttp-jinja2 = callPackage ../development/python-modules/aiohttp-jinja2 { };