mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 11:23:29 +00:00
Merge pull request #294416 from UlyssesZh/everest-mons
everest-mons: init at 2.0.0
This commit is contained in:
commit
f84a34647c
@ -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;
|
||||
|
47
pkgs/by-name/ev/everest-mons/package.nix
Normal file
47
pkgs/by-name/ev/everest-mons/package.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user