blob: d23cc2253a65fb4a428185d54de4e8127720cb00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
{
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 ];
};
}
|