lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #258233 from anthonyroussel/flask-wtf_1_1_2

python311Packages.flask-wtf: 1.1.1 -> 1.2.1

authored by

Mario Rodas and committed by
GitHub
28c72be9 739a8820

+15 -4
+2
pkgs/applications/misc/etesync-dav/default.nix
··· 30 30 }); 31 31 flask-wtf = super.flask-wtf.overridePythonAttrs (old: rec { 32 32 version = "0.15.1"; 33 + format = "setuptools"; 33 34 src = old.src.override { 34 35 inherit version; 36 + pname = "Flask-WTF"; 35 37 hash = "sha256-/xdxhfiRMC3CU0N/5jCB56RqTpmsph3+CG+yPlT/8tw="; 36 38 }; 37 39 disabledTests = [
+13 -4
pkgs/development/python-modules/flask-wtf/default.nix
··· 1 1 { lib 2 2 , fetchPypi 3 - , fetchpatch 4 3 , buildPythonPackage 4 + , pythonOlder 5 + , hatchling 5 6 , flask 6 7 , itsdangerous 7 8 , wtforms ··· 11 12 12 13 buildPythonPackage rec { 13 14 pname = "flask-wtf"; 14 - version = "1.1.1"; 15 + version = "1.2.1"; 16 + format = "pyproject"; 17 + 18 + disabled = pythonOlder "3.8"; 15 19 16 20 src = fetchPypi { 17 - pname = "Flask-WTF"; 21 + pname = "flask_wtf"; 18 22 inherit version; 19 - hash = "sha256-QcQkTprmJtY77UKuR4W5Bme4hbFTXVpAleH2MGDRKqk="; 23 + hash = "sha256-i7Jp65u0a4fnyCM9fn3r3x+LdL+QzBeJmIwps3qXtpU="; 20 24 }; 25 + 26 + nativeBuildInputs = [ 27 + hatchling 28 + ]; 21 29 22 30 propagatedBuildInputs = [ 23 31 flask ··· 38 46 license = licenses.bsd3; 39 47 maintainers = with maintainers; [ mic92 anthonyroussel ]; 40 48 homepage = "https://github.com/lepture/flask-wtf/"; 49 + changelog = "https://github.com/wtforms/flask-wtf/releases/tag/v${version}"; 41 50 }; 42 51 }