Merge pull request #115495 from SuperSandro2000/asnyc-upnp-werkzeug

This commit is contained in:
Sandro 2021-03-09 10:44:11 +01:00 committed by GitHub
commit 3f7f77640d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder
, voluptuous, aiohttp, async-timeout, python-didl-lite, defusedxml
, pytest_6, pytest-asyncio }:
, pytestCheckHook, pytest-asyncio }:
buildPythonPackage rec {
pname = "async-upnp-client";
@ -23,7 +23,7 @@ buildPythonPackage rec {
];
checkInputs = [
pytest_6
pytestCheckHook
pytest-asyncio
];

View File

@ -25,5 +25,6 @@ buildPythonPackage rec {
homepage = "https://palletsprojects.com/p/werkzeug/";
description = "A WSGI utility library for Python";
license = licenses.bsd3;
maintainers = [ ];
};
}

View File

@ -526,7 +526,9 @@ in {
async-timeout = callPackage ../development/python-modules/async_timeout { };
async-upnp-client = callPackage ../development/python-modules/async-upnp-client { };
async-upnp-client = callPackage ../development/python-modules/async-upnp-client {
pytestCheckHook = self.pytestCheckHook.override { pytest = self.pytest_6_1; };
};
asyncwhois = callPackage ../development/python-modules/asyncwhois { };
@ -8524,7 +8526,13 @@ in {
webthing = callPackage ../development/python-modules/webthing { };
werkzeug = callPackage ../development/python-modules/werkzeug { };
werkzeug = callPackage ../development/python-modules/werkzeug {
pytestCheckHook = self.pytestCheckHook.override { pytest = self.pytest_6_1; };
pytest-timeout = self.pytest-timeout.override {
pytest = self.pytest_6_1;
pytestCheckHook = self.pytestCheckHook.override { pytest = self.pytest_6_1; };
};
};
west = callPackage ../development/python-modules/west { };