about summary refs log tree commit diff
path: root/pkgs/by-name/mc/mcdreforged/package.nix
blob: d88e84b3a50fd08a687974193afd7fc563705dee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
  lib,
  fetchFromGitHub,
  python3,
  testers,
  mcdreforged,
}:

python3.pkgs.buildPythonApplication rec {
  pname = "mcdreforged";
  version = "2.12.3";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "Fallen-Breath";
    repo = "MCDReforged";
    rev = "refs/tags/v${version}";
    sha256 = "sha256-MLub++mkkB/jshpHJXtqgIhs7Gcb4jHUyHqGE65S8A8=";
  };

  build-system = [ python3.pkgs.setuptools ];

  dependencies = with python3.pkgs; [
    colorlog
    colorama
    packaging
    parse
    prompt-toolkit
    psutil
    ruamel-yaml
    typing-extensions
  ];

  nativeCheckInputs = [ python3.pkgs.pytestCheckHook ];

  passthru.tests = {
    version = testers.testVersion { package = mcdreforged; };
  };

  meta = with lib; {
    description = "A 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 ];
    mainProgram = "mcdreforged";
  };
}