1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00

Merge pull request #320022 from GaetanLepage/txtai

python311Packages.txtai: mark as broken on python 3.12
This commit is contained in:
Yt 2024-06-15 11:57:51 +00:00 committed by GitHub
commit 3c3ae8a5d1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -50,6 +50,8 @@
xmltodict,
# native check inputs
unittestCheckHook,
pythonAtLeast,
}:
let
version = "7.2.0";
@ -195,11 +197,13 @@ buildPythonPackage {
"-v"
];
meta = with lib; {
meta = {
description = "Semantic search and workflows powered by language models";
changelog = "https://github.com/neuml/txtai/releases/tag/v${version}";
homepage = "https://github.com/neuml/txtai";
license = licenses.asl20;
maintainers = with maintainers; [ happysalada ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ happysalada ];
# This should be addressed in a newer version, but we first need to wait for python311Packages.faiss to be updated
broken = pythonAtLeast "3.12";
};
}