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