blob: 85dcc32792e187073500bdb4a7910436ca2b1172 (
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
|
{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
flit-core,
pytest-aiohttp,
pytest-cov-stub,
pytestCheckHook,
typing-extensions,
}:
buildPythonPackage rec {
pname = "aiohttp-remotes";
version = "1.3.0";
pyproject = true;
src = fetchFromGitHub {
owner = "aio-libs";
repo = "aiohttp-remotes";
tag = "v${version}";
hash = "sha256-/bcYrpZfO/sXc0Tcpr67GBqCu4ZSAVmUj9kzupIHHnM=";
};
build-system = [
flit-core
];
dependencies = [
aiohttp
typing-extensions
];
nativeCheckInputs = [
pytest-aiohttp
pytest-cov-stub
pytestCheckHook
];
pythonImportsCheck = [ "aiohttp_remotes" ];
__darwinAllowLocalNetworking = true;
meta = {
description = "Set of useful tools for aiohttp.web server";
homepage = "https://github.com/wikibusiness/aiohttp-remotes";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ qyliss ];
};
}
|