diff options
Diffstat (limited to 'pkgs/development/python-modules/steamship/default.nix')
-rw-r--r-- | pkgs/development/python-modules/steamship/default.nix | 39 |
1 files changed, 17 insertions, 22 deletions
diff --git a/pkgs/development/python-modules/steamship/default.nix b/pkgs/development/python-modules/steamship/default.nix index dc39e50aebcd..ef61a2397064 100644 --- a/pkgs/development/python-modules/steamship/default.nix +++ b/pkgs/development/python-modules/steamship/default.nix @@ -1,17 +1,17 @@ -{ lib -, buildPythonPackage -, fetchPypi -, setuptools-scm -, pythonRelaxDepsHook -, requests -, pydantic -, aiohttp -, inflection -, fluent-logger -, toml -, click -, semver -, tiktoken +{ + lib, + buildPythonPackage, + fetchPypi, + setuptools-scm, + requests, + pydantic, + aiohttp, + inflection, + fluent-logger, + toml, + click, + semver, + tiktoken, }: buildPythonPackage rec { @@ -24,13 +24,10 @@ buildPythonPackage rec { hash = "sha256-U9SA2Dvepl9BjrvhH+8bVBNjby8IWu5UE+/oor7YWzI="; }; - pythonRelaxDeps = [ - "requests" - ]; + pythonRelaxDeps = [ "requests" ]; nativeBuildInputs = [ setuptools-scm - pythonRelaxDepsHook ]; propagatedBuildInputs = [ @@ -48,12 +45,10 @@ buildPythonPackage rec { # almost all tests require "steamship api key" doCheck = false; - pythonImportsCheck = [ - "steamship" - ]; + pythonImportsCheck = [ "steamship" ]; meta = with lib; { - description = "The fastest way to add language AI to your product"; + description = "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; |