about summary refs log tree commit diff
path: root/pkgs/development/python-modules/i3ipc/default.nix
blob: 05495e0ab2298e40e3e5af684d5cfcaae61c1ea2 (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
49
50
51
52
53
54
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  xorgserver,
  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
    xorgserver
    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 ];
  };
}