python312Packages.flask-wtf: 1.2.1 -> 1.2.2

https://github.com/pallets-eco/flask-wtf/compare/v1.2.1...v1.2.2
This commit is contained in:
Anthony ROUSSEL 2024-10-24 20:21:21 +02:00 committed by Anthony Roussel
parent 91271320d6
commit 0ef44b6c42

View File

@ -14,23 +14,23 @@
buildPythonPackage rec {
pname = "flask-wtf";
version = "1.2.1";
format = "pyproject";
version = "1.2.2";
pyproject = true;
disabled = pythonOlder "3.8";
disabled = pythonOlder "3.9";
src = fetchPypi {
pname = "flask_wtf";
inherit version;
hash = "sha256-i7Jp65u0a4fnyCM9fn3r3x+LdL+QzBeJmIwps3qXtpU=";
hash = "sha256-edLuHkNs9XC8y32RZTP6GHV6LxjCkKzP+rG5oLaEZms=";
};
nativeBuildInputs = [
build-system = [
hatchling
setuptools
];
propagatedBuildInputs = [
dependencies = [
flask
itsdangerous
wtforms
@ -42,10 +42,7 @@ buildPythonPackage rec {
nativeCheckInputs = [ pytestCheckHook ];
pytestFlagsArray = [
"-W"
"ignore::DeprecationWarning"
];
pythonImportsCheck = [ "flask_wtf" ];
meta = with lib; {
description = "Simple integration of Flask and WTForms";
@ -54,7 +51,7 @@ buildPythonPackage rec {
mic92
anthonyroussel
];
homepage = "https://github.com/lepture/flask-wtf/";
changelog = "https://github.com/wtforms/flask-wtf/releases/tag/v${version}";
homepage = "https://github.com/pallets-eco/flask-wtf/";
changelog = "https://github.com/pallets-eco/flask-wtf/releases/tag/v${version}";
};
}