python3Packages.lance-namespace-urllib3-client: 0.4.0 -> 0.4.4

This commit is contained in:
R. Ryantm
2026-01-04 21:45:28 +00:00
committed by Gaetan Lepage
parent 97e8053816
commit e45ddf921d
@@ -16,19 +16,19 @@
pytestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "lance-namespace";
version = "0.4.0";
version = "0.4.4";
pyproject = true;
src = fetchFromGitHub {
owner = "lancedb";
repo = "lance-namespace";
tag = "v${version}";
hash = "sha256-t6VCKG54Sxf92B1OmfXXsWaJww2fyEcMGpJy4z94HZs=";
tag = "v${finalAttrs.version}";
hash = "sha256-aNo6rrWnnFpFk3iPX1sQsuXTDkE5ZRA/9P7TQeJr4iI=";
};
sourceRoot = "${src.name}/python/lance_namespace_urllib3_client";
sourceRoot = "${finalAttrs.src.name}/python/lance_namespace_urllib3_client";
build-system = [
hatchling
@@ -53,4 +53,4 @@ buildPythonPackage rec {
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ GaetanLepage ];
};
}
})