Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
61 lines
1.2 KiB
Nix
61 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
python3Packages,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "skypilot";
|
|
version = "0.8.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "skypilot-org";
|
|
repo = "skypilot";
|
|
tag = "v${version}";
|
|
hash = "sha256-jLjYsBkb5Tba3q/mdqCWK04FLg0pEdHyZH3vuMIP6tg=";
|
|
};
|
|
|
|
pyproject = true;
|
|
|
|
build-system = with python3Packages; [ setuptools ];
|
|
|
|
# when updating, please ensure package version constraints stipulaed
|
|
# in setup.py are met
|
|
propagatedBuildInputs = with python3Packages; [
|
|
cachetools
|
|
click
|
|
colorama
|
|
cryptography
|
|
filelock
|
|
jinja2
|
|
jsonschema
|
|
networkx
|
|
packaging
|
|
pandas
|
|
pendulum
|
|
prettytable
|
|
psutil
|
|
python-dotenv
|
|
pyyaml
|
|
pulp
|
|
requests
|
|
rich
|
|
tabulate
|
|
typing-extensions
|
|
wheel
|
|
];
|
|
|
|
meta = {
|
|
description = "Run LLMs and AI on any Cloud";
|
|
longDescription = ''
|
|
SkyPilot is a framework for running LLMs, AI, and batch jobs on any
|
|
cloud, offering maximum cost savings, highest GPU availability, and
|
|
managed execution.
|
|
'';
|
|
homepage = "https://github.com/skypilot-org/skypilot";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ seanrmurphy ];
|
|
mainProgram = "sky";
|
|
};
|
|
}
|