Merge pull request #294416 from UlyssesZh/everest-mons

everest-mons: init at 2.0.0
This commit is contained in:
OTABI Tomoya 2024-07-16 22:46:35 +09:00 committed by GitHub
commit f84a34647c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 54 additions and 0 deletions

View File

@ -20865,6 +20865,13 @@
githubId = 1607770;
name = "Ulrik Strid";
};
ulysseszhan = {
email = "ulysseszhan@gmail.com";
github = "UlyssesZh";
githubId = 26196187;
matrix = "@ulysseszhan:matrix.org";
name = "Ulysses Zhan";
};
umlx5h = {
github = "umlx5h";
githubId = 20206121;

View File

@ -0,0 +1,47 @@
{ 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 = "A commandline Everest installer and mod manager for Celeste";
license = licenses.mit;
maintainers = with lib.maintainers; [ ulysseszhan ];
mainProgram = "mons";
};
}