python312Packages.aiohttp-fast-url-dispatcher: drop

The improvement is included in aiohttp 3.10.0.
This commit is contained in:
Robert Schütz
2024-08-09 14:48:18 +02:00
committed by Martin Weinelt
parent c9ac92c4e6
commit dfb8bb472c
2 changed files with 0 additions and 53 deletions
@@ -1,51 +0,0 @@
{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
pytest-asyncio,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "aiohttp-fast-url-dispatcher";
version = "0.3.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "bdraco";
repo = "aiohttp-fast-url-dispatcher";
rev = "refs/tags/v${version}";
hash = "sha256-RBS17LhbaAOxFYGjmoEyrq2DCEHeZNpkITPDdCd7Jk0=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace " --cov=aiohttp_fast_url_dispatcher --cov-report=term-missing:skip-covered" ""
'';
nativeBuildInputs = [ poetry-core ];
pythonRelaxDeps = [ "aiohttp" ];
propagatedBuildInputs = [ aiohttp ];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
];
pythonImportsCheck = [ "aiohttp_fast_url_dispatcher" ];
meta = with lib; {
description = "Faster URL dispatcher for aiohttp";
homepage = "https://github.com/bdraco/aiohttp-fast-url-dispatcher";
changelog = "https://github.com/bdraco/aiohttp-fast-url-dispatcher/blob/${src.rev}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}
-2
View File
@@ -245,8 +245,6 @@ self: super: with self; {
aiohttp-cors = callPackage ../development/python-modules/aiohttp-cors { };
aiohttp-fast-url-dispatcher = callPackage ../development/python-modules/aiohttp-fast-url-dispatcher { };
aiohttp-fast-zlib = callPackage ../development/python-modules/aiohttp-fast-zlib { };
aiohttp-isal = callPackage ../development/python-modules/aiohttp-isal { };