python3Packages.supabase-auth: 2.28.3 -> 2.29.0

This commit is contained in:
macbucheron1
2026-05-10 23:15:04 +02:00
parent 9619804f5d
commit 4d84aa0ab5
@@ -12,19 +12,19 @@
pytest-mock,
pytest-asyncio,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "supabase-auth";
version = "2.28.3";
version = "2.29.0";
pyproject = true;
src = fetchFromGitHub {
owner = "supabase";
repo = "supabase-py";
tag = "v${version}";
hash = "sha256-Ra7Ig9IMWouMIadx6mg/pe8GlgLCavR6OsPjqgySTCw=";
tag = "v${finalAttrs.version}";
hash = "sha256-LaSlAYFvx/HHdfmc9J+KScVQ9JFGS98Yfihzn8F7t3g=";
};
sourceRoot = "${src.name}/src/auth";
sourceRoot = "${finalAttrs.src.name}/src/auth";
build-system = [ uv-build ];
@@ -59,8 +59,8 @@ buildPythonPackage rec {
meta = {
description = "Client library for Supabase Auth";
homepage = "https://github.com/supabase/supabase-py/";
changelog = "https://github.com/supabase/supabase-py/blob/${src.tag}/CHANGELOG.md";
changelog = "https://github.com/supabase/supabase-py/blob/v${finalAttrs.src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ macbucheron ];
};
}
})