pythonPackages.werkzeug: fix test execution, add empty maintainers field
This commit is contained in:
parent
421dc8f424
commit
babb021209
|
@ -25,5 +25,6 @@ buildPythonPackage rec {
|
|||
homepage = "https://palletsprojects.com/p/werkzeug/";
|
||||
description = "A WSGI utility library for Python";
|
||||
license = licenses.bsd3;
|
||||
maintainers = [ ];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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 { };
|
||||
|
||||
|
|
Loading…
Reference in New Issue