2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchFromGitHub,
|
2024-07-27 06:49:29 +00:00
|
|
|
xorg,
|
2024-06-05 15:53:02 +00:00
|
|
|
pytest,
|
|
|
|
pytest-xvfb,
|
|
|
|
i3,
|
|
|
|
xlib,
|
|
|
|
xdpyinfo,
|
|
|
|
makeFontsConf,
|
|
|
|
coreutils,
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "i3ipc";
|
2020-07-18 16:06:22 +00:00
|
|
|
version = "2.2.1";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2024-06-05 15:53:02 +00:00
|
|
|
owner = "acrisci";
|
|
|
|
repo = "i3ipc-python";
|
|
|
|
rev = "v${version}";
|
2020-07-18 16:06:22 +00:00
|
|
|
sha256 = "13bzs9dcv27czpnnbgz7a037lm8h991c8gk0qzzk5mq5yak24715";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
2020-07-18 16:06:22 +00:00
|
|
|
propagatedBuildInputs = [ xlib ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
fontsConf = makeFontsConf { fontDirectories = [ ]; };
|
2020-04-24 23:36:52 +00:00
|
|
|
FONTCONFIG_FILE = fontsConf; # Fontconfig error: Cannot load default config file
|
2024-06-05 15:53:02 +00:00
|
|
|
nativeCheckInputs = [
|
|
|
|
pytest
|
|
|
|
xdpyinfo
|
|
|
|
pytest-xvfb
|
2024-07-27 06:49:29 +00:00
|
|
|
xorg.xvfb
|
2024-06-05 15:53:02 +00:00
|
|
|
i3
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace test/i3.config \
|
|
|
|
--replace /bin/true ${coreutils}/bin/true
|
|
|
|
'';
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
py.test --ignore=test/aio/test_shutdown_event.py \
|
|
|
|
--ignore=test/test_shutdown_event.py
|
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Improved Python library to control i3wm and sway";
|
2024-06-05 15:53:02 +00:00
|
|
|
homepage = "https://github.com/acrisci/i3ipc-python";
|
|
|
|
license = licenses.bsd3;
|
2020-04-24 23:36:52 +00:00
|
|
|
maintainers = with maintainers; [ vanzef ];
|
|
|
|
};
|
|
|
|
}
|