about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/prompthub-py/default.nix
blob: 0f1fbe5427b0ab8a4a6c00b29307af2d7c12dd1b (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
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, poetry-core
, pyyaml
, requests
}:
let
  pname = "prompthub-py";
  version = "4.0.0";
in
buildPythonPackage {
  inherit version pname;
  format = "pyproject";

  # Pypi source package doesn't contain tests
  src = fetchFromGitHub {
    owner = "deepset-ai";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-FA4IfhHViSL1u4pgd7jh40rEcS0BldSFDwCPG5irk1g=";
  };

  disabled = pythonOlder "3.8";

  nativeBuildInputs = [
    poetry-core
  ];

  propagatedBuildInputs = [
    pyyaml
    requests
  ];

  meta = with lib; {
    description = "A simple client to fetch prompts from Prompt Hub using its REST API.";
    homepage = "https://github.com/deepset-ai/prompthub-py";
    changelog = "https://github.com/deepset-ai/prompthub-py/releases/tag/v${version}";
    license = licenses.asl20;
    maintainers = with maintainers; [ happysalada ];
  };
}