Files
nixpkgs/pkgs/by-name/ev/everest-mons/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

49 lines
931 B
Nix

{
lib,
fetchPypi,
python3Packages,
}:
python3Packages.buildPythonApplication rec {
pname = "everest-mons";
version = "2.0.0";
src = fetchPypi {
inherit version;
pname = "mons";
hash = "sha256-E1yBTwZ4T2C3sXoLGz0kAcvas0q8tO6Aaiz3SHrT4ZE=";
};
build-system = with python3Packages; [
setuptools
setuptools-scm
];
pyproject = true;
dependencies = with python3Packages; [
dnfile
pefile
click
tqdm
xxhash
pyyaml
urllib3
platformdirs
];
pythonImportsCheck = [ "mons" ];
nativeCheckInputs = with python3Packages; [
pytestCheckHook
];
preCheck = ''
export HOME=$TMPDIR
'';
meta = with lib; {
homepage = "https://mons.coloursofnoise.ca/";
description = "Commandline Everest installer and mod manager for Celeste";
license = licenses.mit;
maintainers = with lib.maintainers; [ ulysseszhan ];
mainProgram = "mons";
};
}