about summary refs log tree commit diff
path: root/pkgs/development/python-modules/steamship/default.nix
blob: b1f2fb5001956fde07e6c508cb158f733ff39d1a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
  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 = "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";
  };
}