mcdreforged: 2.12.3 -> 2.13.0

This commit is contained in:
Moraxyc 2024-07-06 17:24:28 +08:00
parent 2d6884fa81
commit a085d030f1
No known key found for this signature in database

View File

@ -8,25 +8,27 @@
python3.pkgs.buildPythonApplication rec {
pname = "mcdreforged";
version = "2.12.3";
version = "2.13.0";
pyproject = true;
src = fetchFromGitHub {
owner = "Fallen-Breath";
owner = "MCDReforged";
repo = "MCDReforged";
rev = "refs/tags/v${version}";
sha256 = "sha256-MLub++mkkB/jshpHJXtqgIhs7Gcb4jHUyHqGE65S8A8=";
hash = "sha256-843vsazBXnvVs6DqY6HPUaBn33DktknT8+yH09n+aSI=";
};
build-system = [ python3.pkgs.setuptools ];
dependencies = with python3.pkgs; [
colorlog
colorama
colorlog
packaging
parse
prompt-toolkit
psutil
requests
resolvelib
ruamel-yaml
typing-extensions
];
@ -37,12 +39,12 @@ python3.pkgs.buildPythonApplication rec {
version = testers.testVersion { package = mcdreforged; };
};
meta = with lib; {
description = "A rewritten version of MCDaemon, a python tool to control your Minecraft server";
meta = {
description = "Rewritten version of MCDaemon, a python tool to control your Minecraft server";
homepage = "https://mcdreforged.com";
changelog = "https://github.com/MCDReforged/MCDReforged/releases/tag/v${version}";
license = licenses.lgpl3Only;
maintainers = with maintainers; [ moraxyc ];
license = lib.licenses.lgpl3Only;
maintainers = with lib.maintainers; [ moraxyc ];
mainProgram = "mcdreforged";
};
}