python39Packages.flask: fix build & add SuperSandro2000 as maintainer

This commit is contained in:
Sandro Jäckel 2022-03-30 00:26:09 +02:00 committed by Martin Weinelt
parent 1a80cfa025
commit 544c77ba0f

View file

@ -3,12 +3,13 @@
, fetchPypi
, asgiref
, click
, importlib-metadata
, itsdangerous
, jinja2
, python-dotenv
, werkzeug
, setuptools
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
@ -27,11 +28,7 @@ buildPythonPackage rec {
itsdangerous
jinja2
werkzeug
# required for CLI subcommand autodiscovery
# see: https://github.com/pallets/flask/blob/fdac8a5404e3e3a316568107a293f134707c75bb/src/flask/cli.py#L498
setuptools
];
] ++ lib.optional (pythonOlder "3.10") importlib-metadata;
checkInputs = [
pytestCheckHook
@ -48,5 +45,6 @@ buildPythonPackage rec {
Python web application frameworks.
'';
license = licenses.bsd3;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}