Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions overlays/tetra-rp/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,25 @@
setuptools,

cloudpickle,
rich,
runpod,
pydantic,
python-dotenv,
questionary,
typer,
...
}:
buildPythonPackage rec {
pname = "tetra-rp";
version = "0.12.0";
version = "0.13.0";
pyproject = true;
docheck = false;

src = fetchFromGitHub {
owner = "runpod";
repo = "tetra-rp";
tag = "v${version}";
hash = "sha256-I/xPo0ciHnja+M5592Y/wmrfQWsUwBfvU418IDCeHfI=";
hash = "sha256-BgHFjcLJgbmqP5kN08c2ttQjMvR0UJHcJJRlP3Z8RqY=";
};

build-system = [
Expand All @@ -30,9 +33,12 @@ buildPythonPackage rec {

dependencies = [
cloudpickle
rich
runpod
pydantic
python-dotenv
questionary
typer
];

pythonImportsCheck = [
Expand Down