Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
62 lines
1.3 KiB
Nix
62 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
aiohttp,
|
|
async-timeout,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
poetry-core,
|
|
pytest-aiohttp,
|
|
pytestCheckHook,
|
|
yarl,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aiohttp-middlewares";
|
|
version = "2.4.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "playpauseandstop";
|
|
repo = "aiohttp-middlewares";
|
|
tag = "v${version}";
|
|
hash = "sha256-jUH1XhkytRwR76wUTsGQGu6m8s+SZ/GO114Lz9atwE8=";
|
|
};
|
|
|
|
pythonRelaxDeps = [ "async-timeout" ];
|
|
|
|
postPatch = ''
|
|
sed -i "/addopts/d" pyproject.toml
|
|
'';
|
|
|
|
build-system = [ poetry-core ];
|
|
|
|
dependencies = [
|
|
aiohttp
|
|
async-timeout
|
|
yarl
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-aiohttp
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "aiohttp_middlewares" ];
|
|
|
|
disabledTests = [
|
|
# TRests are outdated
|
|
"test_shield_middleware_funcitonal[DELETE-False]"
|
|
"test_shield_middleware_funcitonal[GET-False]"
|
|
"test_shield_middleware_funcitonal[POST-True]"
|
|
"test_shield_middleware_funcitonal[PUT-False]"
|
|
];
|
|
|
|
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/${src.tag}/CHANGELOG.rst";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|