Commit 7c8ba256 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.aiohttp-middlewares: init at 2.3.0

Collection of useful middlewares for aiohttp.web applications

https://github.com/playpauseandstop/aiohttp-middlewares
parent 7f4d523e
Loading
Loading
Loading
Loading
+54 −0
Original line number Diff line number Diff line
{
  lib,
  aiohttp,
  async-timeout,
  buildPythonPackage,
  fetchFromGitHub,
  poetry-core,
  pytest-aiohttp,
  pytestCheckHook,
  pythonOlder,
  yarl,
}:

buildPythonPackage rec {
  pname = "aiohttp-middlewares";
  version = "2.3.0";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "playpauseandstop";
    repo = "aiohttp-middlewares";
    rev = "refs/tags/v${version}";
    hash = "sha256-/xij16JUtq5T5KYinduEP+o4XxFQPyL7pfwvZnS96+U=";
  };

  postPatch = ''
    sed -i "/addopts/d" pyproject.toml
  '';

  build-system = [ poetry-core ];

  dependencies = [
    aiohttp
    async-timeout
    yarl
  ];

  nativeCheckInputs = [
    pytest-aiohttp
    pytestCheckHook
  ];

  pythonImportsCheck = [ "aiohttp_middlewares" ];

  meta = with lib; {
    description = "Collection of useful middlewares for aiohttp.web applications";
    homepage = "https://github.com/playpauseandstop/aiohttp-middlewares";
    changelog = "https://github.com/playpauseandstop/aiohttp-middlewares/blob/${version}/CHANGELOG.rst";
    license = licenses.bsd3;
    maintainers = with maintainers; [ fab ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -253,6 +253,8 @@ self: super: with self; {
  aiohttp-jinja2 = callPackage ../development/python-modules/aiohttp-jinja2 { };
  aiohttp-middlewares = callPackage ../development/python-modules/aiohttp-middlewares { };
  aiohttp-oauthlib = callPackage ../development/python-modules/aiohttp-oauthlib { };
  aiohttp-openmetrics = callPackage ../development/python-modules/aiohttp-openmetrics { };