python3Packages.flask-wtf: 1.0.0 -> 1.0.1

Also change attribute name from flask_wtf to flask-wtf.
This commit is contained in:
Robert Schütz 2022-05-24 04:09:51 +00:00
parent 72a2c11e15
commit c88d7fb859
13 changed files with 44 additions and 24 deletions

View File

@ -61,7 +61,7 @@ buildPythonApplication rec {
elasticsearch
flask-compress
flask_login
flask_wtf
flask-wtf
html2text
python-dotenv
python-frontmatter

View File

@ -28,7 +28,7 @@ let
flask-bootstrap
flask-paginate
flask-reverse-proxy-fix
flask_wtf
flask-wtf
arrow
werkzeug
click

View File

@ -7,7 +7,7 @@
let
python = python3.override {
packageOverrides = self: super: {
flask_wtf = super.flask_wtf.overridePythonAttrs (old: rec {
flask-wtf = super.flask-wtf.overridePythonAttrs (old: rec {
version = "0.15.1";
src = old.src.override {
inherit version;
@ -29,7 +29,7 @@ in python.pkgs.buildPythonApplication rec {
etebase
etesync
flask
flask_wtf
flask-wtf
(python.pkgs.toPythonModule (radicale3.override { python3 = python; }))
];

View File

@ -17,7 +17,7 @@
, dill
, flask
, flask_login
, flask_wtf
, flask-wtf
, flask-appbuilder
, flask-caching
, GitPython
@ -126,7 +126,7 @@ buildPythonPackage rec {
flask-appbuilder
flask-caching
flask_login
flask_wtf
flask-wtf
GitPython
graphviz
gunicorn

View File

@ -11,7 +11,7 @@
, flask_login
, flask-openid
, flask_sqlalchemy
, flask_wtf
, flask-wtf
, flask-jwt-extended
, jsonschema
, marshmallow
@ -62,7 +62,7 @@ buildPythonPackage rec {
flask_login
flask-openid
flask_sqlalchemy
flask_wtf
flask-wtf
flask-jwt-extended
jsonschema
marshmallow

View File

@ -2,7 +2,7 @@
, buildPythonPackage
, fetchFromGitHub
, flask
, flask_wtf
, flask-wtf
, mongoengine
, six
, nose
@ -25,7 +25,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [
email_validator
flask
flask_wtf
flask-wtf
mongoengine
six
];

View File

@ -27,7 +27,7 @@
, flask
, flask_login
, flask_principal
, flask_wtf
, flask-wtf
, itsdangerous
, passlib
@ -58,7 +58,7 @@ buildPythonPackage rec {
flask
flask_login
flask_principal
flask_wtf
flask-wtf
itsdangerous
passlib
];

View File

@ -1,17 +1,36 @@
{ lib, fetchPypi, buildPythonPackage, flask, wtforms, nose }:
{ lib
, fetchPypi
, buildPythonPackage
, flask
, itsdangerous
, wtforms
, email_validator
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "Flask-WTF";
version = "1.0.0";
pname = "flask-wtf";
version = "1.0.1";
src = fetchPypi {
inherit pname version;
sha256 = "872fbb17b5888bfc734edbdcf45bc08fb365ca39f69d25dc752465a455517b28";
pname = "Flask-WTF";
inherit version;
sha256 = "34fe5c6fee0f69b50e30f81a3b7ea16aa1492a771fe9ad0974d164610c09a6c9";
};
propagatedBuildInputs = [ flask wtforms nose ];
propagatedBuildInputs = [
flask
itsdangerous
wtforms
];
doCheck = false; # requires external service
passthru.optional-dependencies = {
email = [ email_validator ];
};
checkInputs = [
pytestCheckHook
];
meta = with lib; {
description = "Simple integration of Flask and WTForms.";

View File

@ -19,7 +19,7 @@
, flask-restful
, flask_sqlalchemy
, flask-talisman
, flask_wtf
, flask-wtf
, debts
, idna
, itsdangerous
@ -64,7 +64,7 @@ buildPythonPackage rec {
flask
flask_mail
flask_migrate
flask_wtf
flask-wtf
flask-babel
flask-cors
flask-restful

View File

@ -22,7 +22,7 @@ python3.pkgs.buildPythonApplication rec {
flask-babel
flask_login
flask_principal
flask_wtf
flask-wtf
iso-639
lxml
pypdf3

View File

@ -34,7 +34,7 @@ let
flask_mail
flask_migrate
flask_sqlalchemy
flask_wtf
flask-wtf
flask-compress
passlib
pytz

View File

@ -67,6 +67,7 @@ mapAliases ({
eebrightbox = throw "eebrightbox is unmaintained upstream and has therefore been removed"; # added 2022-02-03
faulthandler = throw "faulthandler is built into ${python.executable}"; # added 2021-07-12
flask_testing = flask-testing; # added 2022-04-25
flask_wtf = flask-wtf; # added 2022-05-24
garminconnect-ha = garminconnect; # added 2022-02-05
gitdb2 = throw "gitdb2 has been deprecated, use gitdb instead."; # added 2020-03-14
glances = throw "glances has moved to pkgs.glances"; # added 2020-20-28

View File

@ -3122,7 +3122,7 @@ in {
flask-versioned = callPackage ../development/python-modules/flask-versioned { };
flask_wtf = callPackage ../development/python-modules/flask-wtf { };
flask-wtf = callPackage ../development/python-modules/flask-wtf { };
flatbuffers = callPackage ../development/python-modules/flatbuffers {
inherit (pkgs) flatbuffers;