587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
64 lines
1.2 KiB
Nix
64 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, setuptools-scm
|
|
, pythonRelaxDepsHook
|
|
, requests
|
|
, pydantic
|
|
, aiohttp
|
|
, inflection
|
|
, fluent-logger
|
|
, toml
|
|
, click
|
|
, semver
|
|
, tiktoken
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "steamship";
|
|
version = "2.17.34";
|
|
format = "pyproject";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-U9SA2Dvepl9BjrvhH+8bVBNjby8IWu5UE+/oor7YWzI=";
|
|
};
|
|
|
|
pythonRelaxDeps = [
|
|
"requests"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
setuptools-scm
|
|
pythonRelaxDepsHook
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
requests
|
|
pydantic
|
|
aiohttp
|
|
inflection
|
|
fluent-logger
|
|
toml
|
|
click
|
|
semver
|
|
tiktoken
|
|
];
|
|
|
|
# almost all tests require "steamship api key"
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"steamship"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "The fastest way to add language AI to your product";
|
|
homepage = "https://www.steamship.com/";
|
|
changelog = "https://github.com/steamship-core/python-client/releases/tag/${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ natsukium ];
|
|
# https://github.com/steamship-core/python-client/issues/503
|
|
broken = versionAtLeast pydantic.version "2";
|
|
};
|
|
}
|