mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-29 11:44:39 +00:00
122 lines
2.2 KiB
Nix
122 lines
2.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
|
|
# build-system
|
|
hatchling,
|
|
hatch-fancy-pypi-readme,
|
|
|
|
# dependencies
|
|
httpx,
|
|
pydantic,
|
|
typing-extensions,
|
|
anyio,
|
|
distro,
|
|
sniffio,
|
|
aiohttp,
|
|
httpx-aiohttp,
|
|
|
|
# optional dependencies
|
|
datasets,
|
|
numpy,
|
|
requests,
|
|
tiktoken,
|
|
# tinker -- not packaged yet
|
|
torch,
|
|
transformers,
|
|
wandb,
|
|
|
|
# tests
|
|
dirty-equals,
|
|
pytest-asyncio,
|
|
pytestCheckHook,
|
|
respx,
|
|
time-machine,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "fireworks-ai";
|
|
version = "1.2.9";
|
|
pyproject = true;
|
|
__structuredAttrs = true;
|
|
strictDeps = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fw-ai-external";
|
|
repo = "python-sdk";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-Yq5cEg7Iu96S+09PqvYKDFG6PlhzZo3Uq+1XLECIw4I=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace-fail "hatchling==1.26.3" "hatchling>=1.26.3"
|
|
'';
|
|
|
|
build-system = [
|
|
hatchling
|
|
hatch-fancy-pypi-readme
|
|
];
|
|
|
|
pythonRelaxDeps = [ "pydantic" ];
|
|
|
|
dependencies = [
|
|
aiohttp
|
|
anyio
|
|
distro
|
|
httpx
|
|
httpx-aiohttp
|
|
pydantic
|
|
sniffio
|
|
typing-extensions
|
|
];
|
|
|
|
optional-dependencies = {
|
|
training-sdk = [
|
|
# tinker is not available in nixpkgs
|
|
requests
|
|
];
|
|
training = [
|
|
datasets
|
|
numpy
|
|
tiktoken
|
|
torch
|
|
transformers
|
|
wandb
|
|
]
|
|
++ finalAttrs.passthru.optional-dependencies.training-sdk;
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
dirty-equals
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
respx
|
|
time-machine
|
|
]
|
|
++ lib.concatAttrValues finalAttrs.passthru.optional-dependencies;
|
|
|
|
pytestFlags = [
|
|
# ResourceWarning: Unclosed client session <aiohttp.client.ClientSession object at 0x7ffff1d48ec0>
|
|
"-Wignore::ResourceWarning"
|
|
];
|
|
|
|
disabledTests = [
|
|
# httpx.TimeoutException: Test timeout error
|
|
"test_retrying_timeout_errors_doesnt_leak"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"fireworks"
|
|
];
|
|
|
|
meta = {
|
|
description = "Client library for Fireworks.ai";
|
|
homepage = "https://github.com/fw-ai-external/python-sdk";
|
|
changelog = "https://github.com/fw-ai-external/python-sdk/blob/${finalAttrs.src.tag}/CHANGELOG.md";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ sarahec ];
|
|
};
|
|
})
|