
This reverts commit 65a333600d5c88a98d674f637d092807cfc12253. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 / 758551e4587d75882aebc21a04bee960418f8ce9
55 lines
1.1 KiB
Nix
55 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
xorg,
|
|
pytest,
|
|
pytest-xvfb,
|
|
i3,
|
|
xlib,
|
|
xdpyinfo,
|
|
makeFontsConf,
|
|
coreutils,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "i3ipc";
|
|
version = "2.2.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "acrisci";
|
|
repo = "i3ipc-python";
|
|
rev = "v${version}";
|
|
sha256 = "13bzs9dcv27czpnnbgz7a037lm8h991c8gk0qzzk5mq5yak24715";
|
|
};
|
|
propagatedBuildInputs = [ xlib ];
|
|
|
|
fontsConf = makeFontsConf { fontDirectories = [ ]; };
|
|
FONTCONFIG_FILE = fontsConf; # Fontconfig error: Cannot load default config file
|
|
nativeCheckInputs = [
|
|
pytest
|
|
xdpyinfo
|
|
pytest-xvfb
|
|
xorg.xvfb
|
|
i3
|
|
];
|
|
|
|
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
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Improved Python library to control i3wm and sway";
|
|
homepage = "https://github.com/acrisci/i3ipc-python";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ vanzef ];
|
|
};
|
|
}
|