python3Packages.lance-namespace-urllib3-client: init at 0.0.20

This commit is contained in:
Gaetan Lepage
2025-11-05 22:12:26 +00:00
parent 85ca7f0e53
commit 25961a9e31
2 changed files with 60 additions and 0 deletions
@@ -0,0 +1,56 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
hatchling,
# dependencies
pydantic,
python-dateutil,
typing-extensions,
urllib3,
# tests
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "lance-namespace";
version = "0.0.20";
pyproject = true;
src = fetchFromGitHub {
owner = "lancedb";
repo = "lance-namespace";
tag = "v${version}";
hash = "sha256-dacYNbWXlV6+/klb9/rgbG/2YJ5BAw5xeSZbPvDgRb4=";
};
sourceRoot = "${src.name}/python/lance_namespace_urllib3_client";
build-system = [
hatchling
];
dependencies = [
pydantic
python-dateutil
typing-extensions
urllib3
];
pythonImportsCheck = [ "lance_namespace_urllib3_client" ];
nativeCheckInputs = [
pytestCheckHook
];
meta = {
description = "Lance namespace OpenAPI specification";
homepage = "https://github.com/lancedb/lance-namespace/tree/main/python/lance_namespace_urllib3_client";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ GaetanLepage ];
};
}
+4
View File
@@ -8000,6 +8000,10 @@ self: super: with self; {
lammps = callPackage ../development/python-modules/lammps { inherit (pkgs) lammps; };
lance-namespace-urllib3-client =
callPackage ../development/python-modules/lance-namespace-urllib3-client
{ };
lancedb = callPackage ../development/python-modules/lancedb { inherit (pkgs) protobuf; };
langchain = callPackage ../development/python-modules/langchain { };