mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-29 08:14:19 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
43 lines
920 B
Nix
43 lines
920 B
Nix
{
|
|
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 = "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 ];
|
|
};
|
|
}
|