Commit 0ef44b6c authored by Anthony ROUSSEL's avatar Anthony ROUSSEL Committed by Anthony Roussel
Browse files

python312Packages.flask-wtf: 1.2.1 -> 1.2.2

parent 91271320
Loading
Loading
Loading
Loading
+9 −12
Original line number Diff line number Diff line
@@ -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}";
  };
}