mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-28 19:24:45 +00:00
https://github.com/pallets-eco/flask-wtf/releases/tag/v1.3.0 This commit was automatically generated using update-python-libraries.
55 lines
986 B
Nix
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}";
|
|
};
|
|
}
|