python311Packages.weaviate-client: disable on unsupported Python releases

- add format
This commit is contained in:
Fabian Affolter 2023-05-14 09:15:00 +02:00
parent 23f73a61f9
commit 6fac48341b

View File

@ -2,6 +2,7 @@
, authlib
, buildPythonPackage
, fetchPypi
, pythonOlder
, tqdm
, validators
}:
@ -9,6 +10,9 @@
buildPythonPackage rec {
pname = "weaviate-client";
version = "3.18.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;