python310Packages.flask-autoindex: mark as broken

Test suite fails with current Flask
https://github.com/general03/flask-autoindex/issues/67
This commit is contained in:
Fabian Affolter 2023-02-24 11:39:47 +01:00
parent b958cbfeac
commit c7708e4849

View file

@ -3,7 +3,9 @@
, fetchPypi
, flask
, flask-silk
, future
, pythonOlder
, unittestCheckHook
}:
buildPythonPackage rec {
@ -22,6 +24,11 @@ buildPythonPackage rec {
propagatedBuildInputs = [
flask
flask-silk
future
];
nativeCheckInputs = [
unittestCheckHook
];
pythonImportsCheck = [
@ -38,5 +45,7 @@ buildPythonPackage rec {
changelog = "https://github.com/general03/flask-autoindex/blob/v${version}/CHANGELOG.md";
license = licenses.bsd2;
maintainers = teams.sage.members;
# https://github.com/general03/flask-autoindex/issues/67
broken = true;
};
}