Philip Taron 22b88ba79d
treewide: adjust meta descriptions to avoid definite or indefinite articles
This patch was produced in Vim by me, a human being. All errors are the fault of the operator. I did try to be careful.

Co-authored-by: Peder Bergebakken Sundt <pbsds@hotmail.com>
Co-authored-by: dotlambda <nix@dotlambda.de>
2025-06-05 11:04:25 -07: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";
};
}