mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
python3Packages.steamship: init at 2.16.9
This commit is contained in:
parent
691696ebad
commit
4d5505e97b
62
pkgs/development/python-modules/steamship/default.nix
Normal file
62
pkgs/development/python-modules/steamship/default.nix
Normal file
@ -0,0 +1,62 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, setuptools-scm
|
||||
, pythonRelaxDepsHook
|
||||
, requests
|
||||
, pydantic
|
||||
, aiohttp
|
||||
, inflection
|
||||
, fluent-logger
|
||||
, toml
|
||||
, click
|
||||
, semver
|
||||
, tiktoken
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "steamship";
|
||||
version = "2.16.9";
|
||||
format = "pyproject";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-NHMrReRw8x7N7vy8BqmKx9fDfQYjlOWY7ChdLz+qGxQ=";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -11567,6 +11567,8 @@ self: super: with self; {
|
||||
|
||||
steamodd = callPackage ../development/python-modules/steamodd { };
|
||||
|
||||
steamship = callPackage ../development/python-modules/steamship { };
|
||||
|
||||
stem = callPackage ../development/python-modules/stem { };
|
||||
|
||||
stestr = callPackage ../development/python-modules/stestr { };
|
||||
|
Loading…
Reference in New Issue
Block a user