depot/third_party/nixpkgs/pkgs/development/python-modules/weaviate-client/default.nix
Default email 2c76a4cb41 Project import generated by Copybara.
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
2023-11-16 04:20:00 +00:00

54 lines
1.1 KiB
Nix

{ lib
, authlib
, buildPythonPackage
, fetchPypi
, pythonOlder
, setuptools-scm
, tqdm
, validators
}:
buildPythonPackage rec {
pname = "weaviate-client";
version = "3.25.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-iU33APwfCpMvo3ACn2RK9AYvhxgCb9pa0HZH01fZUWc=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
postPatch = ''
substituteInPlace setup.cfg \
--replace "validators>=0.18.2,<=0.21.0" "validators>=0.18.2" \
--replace "requests>=2.28.0,<2.29.0" "requests>=2.28.0"
'';
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
authlib
tqdm
validators
];
doCheck = false;
pythonImportsCheck = [
"weaviate"
];
meta = with lib; {
description = "Python native client for easy interaction with a Weaviate instance";
homepage = "https://github.com/weaviate/weaviate-python-client";
changelog = "https://github.com/weaviate/weaviate-python-client/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ happysalada ];
};
}