python3Packages.pymongo-search-utils: init at 0.1.0

This commit is contained in:
Sarah Clark
2025-12-12 20:31:35 -08:00
parent 7255899119
commit cb0a972984
2 changed files with 45 additions and 0 deletions
@@ -0,0 +1,43 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
pymongo,
}:
buildPythonPackage rec {
pname = "pymongo-search-utils";
version = "0.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "mongodb-labs";
repo = "pymongo-search-utils";
tag = version;
hash = "sha256-R0GYfVeLc0zfzfEGBil/AHyt20Y0bEo+eQ9wtdNwJL8=";
};
build-system = [
hatchling
];
dependencies = [
pymongo
];
# tests require mongodb running in the background
doCheck = false;
pythonImportsCheck = [
"pymongo_search_utils"
];
meta = {
description = "Vector Search utilities for PyMongo";
homepage = "https://github.com/mongodb-labs/pymongo-search-utils/";
changelog = "https://github.com/mongodb-labs/pymongo-search-utils/releases/tag/${src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ sarahec ];
};
}
+2
View File
@@ -13828,6 +13828,8 @@ self: super: with self; {
pymongo-inmemory = callPackage ../development/python-modules/pymongo-inmemory { };
pymongo-search-utils = callPackage ../development/python-modules/pymongo-search-utils { };
pymonoprice = callPackage ../development/python-modules/pymonoprice { };
pymoo = callPackage ../development/python-modules/pymoo { };