Files
nixpkgs/pkgs/development/python-modules/flask-wtf/default.nix
Fabian Affolter b883d1fda7 python3Packages.flask-wtf: 1.2.2 -> 1.3.0
https://github.com/pallets-eco/flask-wtf/releases/tag/v1.3.0

This commit was automatically generated using update-python-libraries.
2026-08-25 01:24:23 +02:00

55 lines
986 B
Nix

{
lib,
fetchPypi,
buildPythonPackage,
hatchling,
flask,
itsdangerous,
wtforms,
email-validator,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "flask-wtf";
version = "1.3.0";
pyproject = true;
src = fetchPypi {
pname = "flask_wtf";
inherit version;
hash = "sha256-YdXavFDD34hcKX3L2AgQRDpdYyEGyKacq4znQPDN18w=";
};
build-system = [
hatchling
setuptools
];
dependencies = [
flask
itsdangerous
wtforms
];
optional-dependencies = {
email = [ email-validator ];
};
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "flask_wtf" ];
meta = {
description = "Simple integration of Flask and WTForms";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [
mic92
anthonyroussel
];
homepage = "https://github.com/pallets-eco/flask-wtf/";
changelog = "https://github.com/pallets-eco/flask-wtf/releases/tag/v${version}";
};
}