python3Packages.aiohttp-wsgi: 0.9.1 -> 0.10.0

This commit is contained in:
Martin Weinelt 2022-02-20 21:57:54 +01:00
parent 7a73a0da07
commit 6a3c746e3b

View File

@ -8,14 +8,14 @@
buildPythonPackage rec {
pname = "aiohttp-wsgi";
version = "0.9.1";
version = "0.10.0";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "etianen";
repo = pname;
rev = version;
sha256 = "sha256-lQ0mAUqsOmozUIMd6nwRATaq8C5SUFGoyQu1v0RBnas=";
rev = "v${version}";
sha256 = "sha256-3Q00FidZWV1KueuHyHKQf1PsDJGOaRW6v/kBy7lzD4Q=";
};
propagatedBuildInputs = [
@ -26,12 +26,6 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTests = [
# makes http request to another server
# https://github.com/etianen/aiohttp-wsgi/issues/32
"testEnviron"
];
pythonImportsCheck = [ "aiohttp_wsgi" ];
meta = with lib; {