blob: ea2fd3040bfed65cdcd5f41559e35ecf3e0b221e (
plain)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
{
lib,
pkgs,
stdenv,
buildPythonPackage,
nix-update-script,
fetchFromGitHub,
setuptools,
pygame-ce,
python-i18n,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pygame-gui";
version = "0614";
pyproject = true;
# nixpkgs-update: no auto update
src = fetchFromGitHub {
owner = "MyreMylar";
repo = "pygame_gui";
tag = "v_${version}";
hash = "sha256-wLvWaJuXMXk7zOaSZfIpsXhQt+eCjOtlh8IRuKbR75o=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
pygame-ce
python-i18n
];
postPatch = ''
substituteInPlace pygame_gui/core/utility.py \
--replace-fail "xsel" "${lib.getExe pkgs.xsel}"
'';
nativeCheckInputs = [ pytestCheckHook ];
preCheck = ''
export HOME=$TMPDIR
export SDL_VIDEODRIVER=dummy
'';
disabledTests = [
# Clipboard doesn't exist in test environment
"test_process_event_text_ctrl_c"
"test_process_event_text_ctrl_v"
"test_process_event_text_ctrl_v_nothing"
"test_process_event_ctrl_v_over_limit"
"test_process_event_ctrl_v_at_limit"
"test_process_event_ctrl_v_over_limit_select_range"
"test_process_event_text_ctrl_v_select_range"
"test_process_event_text_ctrl_a"
"test_process_event_text_ctrl_x"
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
# fails to determine "/" as an existing path
# https://github.com/MyreMylar/pygame_gui/issues/644
"test_process_event"
];
disabledTestPaths = [ "tests/test_performance/test_text_performance.py" ];
passthru.updateScript = nix-update-script {
extraArgs = [
"--version-regex"
"v_(.*)"
];
};
meta = {
description = "GUI system for pygame";
homepage = "https://github.com/MyreMylar/pygame_gui";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [
emilytrau
pbsds
];
};
}
|