Files
nixpkgs/pkgs/development/python-modules/aiohttp-middlewares/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

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 = {
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 = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fab ];
};
}