From 81ee491a484b16ce3f5780c55b335b8753bfccca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sat, 15 Nov 2025 17:48:00 -0800 Subject: [PATCH] python3Packages.flask-sqlalchemy-lite: 0.1.0 -> 0.2.0 Diff: https://github.com/pallets-eco/flask-sqlalchemy-lite/compare/0.1.0...0.2.0 Changelog: https://github.com/pallets-eco/flask-sqlalchemy-lite/blob/0.2.0/CHANGES.md --- .../flask-sqlalchemy-lite/default.nix | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/pkgs/development/python-modules/flask-sqlalchemy-lite/default.nix b/pkgs/development/python-modules/flask-sqlalchemy-lite/default.nix index 7e0f0ba603cb..df55e53a65b6 100644 --- a/pkgs/development/python-modules/flask-sqlalchemy-lite/default.nix +++ b/pkgs/development/python-modules/flask-sqlalchemy-lite/default.nix @@ -2,7 +2,6 @@ aiosqlite, buildPythonPackage, fetchFromGitHub, - fetchpatch2, flask, flit-core, lib, @@ -12,24 +11,16 @@ buildPythonPackage rec { pname = "flask-sqlalchemy-lite"; - version = "0.1.0"; + version = "0.2.0"; pyproject = true; src = fetchFromGitHub { owner = "pallets-eco"; repo = "flask-sqlalchemy-lite"; tag = version; - hash = "sha256-LpdPp5Gp74DSJqD1DJqwNeaMKdN5pEAUkxnKGYZcVis="; + hash = "sha256-c7lTxihlW48bj9+pU2uq2V/dQrZCi5kq2gWdFhipQGE="; }; - patches = [ - # fix python3.13 compat - (fetchpatch2 { - url = "https://github.com/pallets-eco/flask-sqlalchemy-lite/commit/b4117beaa6caa0a5945d6e3451db8b80dc4cc8cf.patch?full_index=1"; - hash = "sha256-zCeUWB3iuKqco030pULaRpRsIOpSRz9+VYxI/RQhIyw="; - }) - ]; - build-system = [ flit-core ]; dependencies = [ @@ -47,7 +38,7 @@ buildPythonPackage rec { ]; meta = { - changelog = "https://github.com/pallets-eco/flask-sqlalchemy-lite/blob/${src.rev}/CHANGES.md"; + changelog = "https://github.com/pallets-eco/flask-sqlalchemy-lite/blob/${src.tag}/CHANGES.md"; description = "Integrate SQLAlchemy with Flask"; homepage = "https://github.com/pallets-eco/flask-sqlalchemy-lite"; license = lib.licenses.mit;