13 buildPythonPackage rec {
14 pname = "aiohttp-swagger";
16 format = "setuptools";
18 disabled = pythonOlder "3.6";
20 src = fetchFromGitHub {
24 hash = "sha256-M43sNpbXWXFRTd549cZhvhO35nBB6OH+ki36BzSk87Q=";
27 propagatedBuildInputs = [
40 substituteInPlace requirements.txt \
41 --replace "markupsafe~=1.1.1" "markupsafe>=1.1.1" \
42 --replace "jinja2~=2.11.2" "jinja2>=2.11.2"
46 # The custom client is obsolete
50 pythonImportsCheck = [
55 description = "Swagger API Documentation builder for aiohttp";
56 homepage = "https://github.com/cr0hn/aiohttp-swagger";
57 license = licenses.mit;
58 maintainers = with maintainers; [ elohmeier ];