pythonPackages.werkzeug: fix test execution, add empty maintainers field

This commit is contained in:
Sandro Jäckel 2021-03-09 10:23:52 +01:00
parent 421dc8f424
commit babb021209
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
2 changed files with 8 additions and 1 deletions

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

@ -8526,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 { };