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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
coreutils,
setuptools,
xlib,
fontconfig,
pytestCheckHook,
writableTmpDirAsHomeHook,
pytest-asyncio,
pytest-timeout,
pytest-xvfb,
i3,
xorg,
}:
buildPythonPackage rec {
pname = "i3ipc";
version = "2.2.1";
pyproject = true;
src = fetchFromGitHub {
owner = "altdesktop";
repo = "i3ipc-python";
tag = "v${version}";
hash = "sha256-JRwipvIF1zL/x2A+xEJKEFV6BlDnv2Xt/eyIzVrSf40=";
};
patches = [
# Upstream expects a very old version of pytest-asyncio. This patch correctly
# decorates async fixtures using pytest-asyncio and configures `loop_scope`
# where needed.
./fix-async-tests.patch
];
postPatch = ''
substituteInPlace test/i3.config \
--replace-fail /bin/true ${coreutils}/bin/true
'';
build-system = [ setuptools ];
dependencies = [ xlib ];
# Fontconfig error: Cannot load default config file
env.FONTCONFIG_FILE = "${fontconfig.out}/etc/fonts/fonts.conf";
nativeCheckInputs = [
pytestCheckHook
writableTmpDirAsHomeHook
pytest-asyncio
pytest-timeout
pytest-xvfb
i3
xorg.xdpyinfo
xorg.xvfb
];
disabledTestPaths = [
# Timeout
"test/test_shutdown_event.py::TestShutdownEvent::test_shutdown_event_reconnect"
"test/aio/test_shutdown_event.py::TestShutdownEvent::test_shutdown_event_reconnect"
# Flaky
"test/test_window.py::TestWindow::test_detailed_window_event"
"test/aio/test_workspace.py::TestWorkspace::test_workspace"
];
pythonImportsCheck = [ "i3ipc" ];
meta = {
description = "Improved Python library to control i3wm and sway";
homepage = "https://github.com/altdesktop/i3ipc-python";
changelog = "https://github.com/altdesktop/i3ipc-python/releases/tag/${src.tag}";
license = lib.licenses.bsd3;
};
}
|