Merge pull request #115495 from SuperSandro2000/asnyc-upnp-werkzeug
This commit is contained in:
commit
3f7f77640d
|
@ -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
|
||||
];
|
||||
|
||||
|
|
|
@ -25,5 +25,6 @@ buildPythonPackage rec {
|
|||
homepage = "https://palletsprojects.com/p/werkzeug/";
|
||||
description = "A WSGI utility library for Python";
|
||||
license = licenses.bsd3;
|
||||
maintainers = [ ];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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 { };
|
||||
|
||||
|
|
Loading…
Reference in New Issue