blob: e38f47e6bcd8bce903b88064b3d255bddbb89797 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
baize,
httpx,
pdm-backend,
pytest-asyncio,
pytestCheckHook,
starlette,
}:
buildPythonPackage rec {
pname = "a2wsgi";
version = "1.10.10";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-pbz/tSCBujnfDV6aiE/G+BnZLjpCOJNDunfL+An+H0U=";
};
build-system = [ pdm-backend ];
dependencies = [
starlette
baize
];
nativeCheckInputs = [
baize
httpx
pytest-asyncio
pytestCheckHook
starlette
];
meta = {
description = "Convert WSGI app to ASGI app or ASGI app to WSGI app";
homepage = "https://github.com/abersheeran/a2wsgi";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ SuperSandro2000 ];
};
}
|