depot/third_party/nixpkgs/pkgs/development/python-modules/flask/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

90 lines
1.9 KiB
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
# build-system
, flit-core
# dependencies
, blinker
, click
, importlib-metadata
, itsdangerous
, jinja2
, werkzeug
# optional-dependencies
, asgiref
, python-dotenv
# tests
, greenlet
, pytestCheckHook
# reverse dependencies
, flask-limiter
, flask-restful
, flask-restx
, moto
}:
buildPythonPackage rec {
pname = "flask";
version = "3.0.2";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-giwD9LeZIEJQp+6Ese3cQGZTlTM5c9+53uv+Ql/vy30=";
};
nativeBuildInputs = [
flit-core
];
propagatedBuildInputs = [
click
blinker
itsdangerous
jinja2
werkzeug
] ++ lib.optionals (pythonOlder "3.10") [
importlib-metadata
];
passthru.optional-dependencies = {
async = [
asgiref
];
dotenv = [
python-dotenv
];
};
nativeCheckInputs = [
pytestCheckHook
] ++ lib.optionals (pythonOlder "3.11") [
greenlet
] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
passthru.tests = {
inherit flask-limiter flask-restful flask-restx moto;
};
meta = with lib; {
changelog = "https://flask.palletsprojects.com/en/${versions.majorMinor version}.x/changes/#version-${replaceStrings [ "." ] [ "-" ] version}";
homepage = "https://flask.palletsprojects.com/";
description = "The Python micro framework for building web applications";
mainProgram = "flask";
longDescription = ''
Flask is a lightweight WSGI web application framework. It is
designed to make getting started quick and easy, with the ability
to scale up to complex applications. It began as a simple wrapper
around Werkzeug and Jinja and has become one of the most popular
Python web application frameworks.
'';
license = licenses.bsd3;
maintainers = with maintainers; [ nickcao ];
};
}