python3Packages.storage3: 2.28.3 -> 2.29.0

This commit is contained in:
macbucheron1
2026-05-10 23:13:44 +02:00
parent 526b687dc7
commit 9619804f5d
@@ -14,19 +14,19 @@
pytestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "storage3";
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/storage";
sourceRoot = "${finalAttrs.src.name}/src/storage";
build-system = [ uv-build ];
@@ -61,8 +61,11 @@ buildPythonPackage rec {
meta = {
description = "Client library for Supabase Functions";
homepage = "https://github.com/supabase/supabase-py";
changelog = "https://github.com/supabase/supabase-py/blob/${src.tag}/CHANGELOG.md";
maintainers = with lib.maintainers; [ siegema ];
changelog = "https://github.com/supabase/supabase-py/blob/v${finalAttrs.src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
siegema
macbucheron
];
};
}
})