summary refs log tree commit diff
path: root/pkgs/development/python-modules/qtile-extras/default.nix
blob: 44e6a2dcc906c5f504cc21851c495c952604dad2 (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
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
83
84
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools-scm
, pytestCheckHook
, xorgserver
, pulseaudio
, pytest-asyncio
, qtile
, keyring
, requests
, stravalib
}:

buildPythonPackage rec {
  pname = "qtile-extras";
  version = "0.22.1";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "elParaguayo";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-2dMpGLtwIp7+aoOgYav2SAjaKMiXHmmvsWTBEIMKEW4=";
  };

  SETUPTOOLS_SCM_PRETEND_VERSION = version;

  nativeBuildInputs = [ setuptools-scm ];

  nativeCheckInputs = [
    pytestCheckHook
    xorgserver
  ];
  checkInputs = [
    pytest-asyncio
    qtile
    pulseaudio
    keyring
    requests
    stravalib
  ];
  disabledTests = [
    # AttributeError: 'ImgMask' object has no attribute '_default_size'. Did you mean: 'default_size'?
    # cairocffi.pixbuf.ImageLoadingError: Pixbuf error: Unrecognized image file format
    "test_draw"
    "test_icons"
    "1-x11-GithubNotifications-kwargs3"
    "1-x11-SnapCast-kwargs8"
    "1-x11-TVHWidget-kwargs10"
    "test_tvh_widget_not_recording"
    "test_tvh_widget_recording"
    "test_tvh_widget_popup"
    "test_snapcast_options"
    # ValueError: Namespace Gdk not available
    # AssertionError: Window never appeared...
    "test_gloabl_menu"
    "test_statusnotifier_menu"
    # AttributeError: 'str' object has no attribute 'canonical'
    "test_strava_widget_display"
    "test_strava_widget_popup"
    # Needs a running DBUS
    "test_brightness_power_saving"
    "test_upower_all_batteries"
    "test_upower_named_battery"
    "test_upower_low_battery"
    "test_upower_critical_battery"
    "test_upower_charging"
    "test_upower_show_text"
  ];
  preCheck = ''
    export HOME=$(mktemp -d)
  '';

  pythonImportsCheck = [ "qtile_extras" ];

  meta = with lib; {
    description = "Extra modules and widgets for the Qtile tiling window manager";
    homepage = "https://github.com/elParaguayo/qtile-extras";
    changelog = "https://github.com/elParaguayo/qtile-extras/blob/${src.rev}/CHANGELOG";
    license = licenses.mit;
    maintainers = with maintainers; [ arjan-s ];
  };
}