mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-14 01:03:54 +00:00
132 lines
2.3 KiB
Nix
132 lines
2.3 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
|
|
# build-system
|
|
setuptools,
|
|
|
|
# dependencies
|
|
jsonschema,
|
|
numpy,
|
|
pillow,
|
|
pydantic,
|
|
pydantic-extra-types,
|
|
requests,
|
|
tiktoken,
|
|
typing-extensions,
|
|
|
|
# optional-dependencies
|
|
click,
|
|
fastapi,
|
|
huggingface-hub,
|
|
jinja2,
|
|
llguidance,
|
|
opencv-python-headless,
|
|
pydantic-settings,
|
|
pytestCheckHook,
|
|
sentencepiece,
|
|
soundfile,
|
|
soxr,
|
|
uvloop,
|
|
|
|
# tests
|
|
openai,
|
|
pycountry,
|
|
uvicorn,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "mistral-common";
|
|
version = "1.11.3";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mistralai";
|
|
repo = "mistral-common";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-9NeJqv7m7vT/lI6mV9QbAsrLUcxO4Wr+QgKfz6RWtsM=";
|
|
};
|
|
|
|
build-system = [
|
|
setuptools
|
|
];
|
|
|
|
dependencies = [
|
|
jsonschema
|
|
numpy
|
|
pillow
|
|
pydantic
|
|
pydantic-extra-types
|
|
requests
|
|
tiktoken
|
|
typing-extensions
|
|
];
|
|
|
|
optional-dependencies =
|
|
let
|
|
self = finalAttrs.finalPackage.optional-dependencies;
|
|
in
|
|
{
|
|
opencv = [
|
|
opencv-python-headless
|
|
];
|
|
sentencepiece = [
|
|
sentencepiece
|
|
];
|
|
soundfile = [
|
|
soundfile
|
|
];
|
|
soxr = [
|
|
soxr
|
|
];
|
|
audio = self.soundfile ++ self.soxr;
|
|
image = self.opencv;
|
|
guidance = [
|
|
jinja2
|
|
llguidance
|
|
];
|
|
hf-hub = [
|
|
huggingface-hub
|
|
];
|
|
server = [
|
|
click
|
|
fastapi
|
|
pydantic-settings
|
|
uvloop
|
|
]
|
|
++ fastapi.optional-dependencies.standard;
|
|
all =
|
|
self.opencv
|
|
++ self.sentencepiece
|
|
++ self.audio
|
|
++ self.image
|
|
++ self.guidance
|
|
++ self.hf-hub
|
|
++ self.server;
|
|
};
|
|
|
|
pythonImportsCheck = [ "mistral_common" ];
|
|
|
|
nativeCheckInputs = [
|
|
openai
|
|
pycountry
|
|
pytestCheckHook
|
|
uvicorn
|
|
]
|
|
++ finalAttrs.finalPackage.optional-dependencies.all;
|
|
|
|
disabledTests = [
|
|
# AssertionError, Extra items in the right set
|
|
"test_openai_chat_fields"
|
|
];
|
|
|
|
meta = {
|
|
description = "Tools to help you work with Mistral models";
|
|
homepage = "https://github.com/mistralai/mistral-common";
|
|
changelog = "https://github.com/mistralai/mistral-common/releases/tag/v${finalAttrs.version}";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ bgamari ];
|
|
};
|
|
})
|