2021-04-09 22:44:02 +01:00
|
|
|
{ lib
|
|
|
|
, aiohttp
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pytestCheckHook
|
|
|
|
, pythonOlder
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "aiohttp-wsgi";
|
2022-02-20 20:57:54 +00:00
|
|
|
version = "0.10.0";
|
2021-04-09 22:44:02 +01:00
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "etianen";
|
|
|
|
repo = pname;
|
2022-02-20 20:57:54 +00:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "sha256-3Q00FidZWV1KueuHyHKQf1PsDJGOaRW6v/kBy7lzD4Q=";
|
2021-04-09 22:44:02 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
aiohttp
|
|
|
|
];
|
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "aiohttp_wsgi" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "WSGI adapter for aiohttp";
|
|
|
|
homepage = "https://github.com/etianen/aiohttp-wsgi";
|
|
|
|
license = with licenses; [ bsd3 ];
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
|
|
|
}
|