a19cd4ffb1
This reverts commit65a333600d. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 /758551e458
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 ];
|
|
};
|
|
}
|