about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pywlroots/default.nix
blob: 2e2d887b4c792013153450771240e1c401ff9169 (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
{
  lib,
  buildPythonPackage,
  fetchPypi,
  python,
  cffi,
  pkg-config,
  libxkbcommon,
  libinput,
  pixman,
  pythonOlder,
  udev,
  wlroots,
  wayland,
  pywayland,
  xkbcommon,
  xorg,
  pytestCheckHook,
  qtile,
}:

buildPythonPackage rec {
  pname = "pywlroots";
  version = "0.17.0";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-cssr4UBIwMvInM8bV4YwE6mXf9USSMMAzMcgAefEPbs=";
  };

  nativeBuildInputs = [ pkg-config ];
  propagatedNativeBuildInputs = [ cffi ];
  buildInputs = [
    libinput
    libxkbcommon
    pixman
    xorg.libxcb
    xorg.xcbutilwm
    udev
    wayland
    wlroots
  ];
  propagatedBuildInputs = [
    cffi
    pywayland
    xkbcommon
  ];
  nativeCheckInputs = [ pytestCheckHook ];

  postBuild = ''
    ${python.pythonOnBuildForHost.interpreter} wlroots/ffi_build.py
  '';

  pythonImportsCheck = [ "wlroots" ];

  passthru.tests = {
    inherit qtile;
  };

  meta = with lib; {
    homepage = "https://github.com/flacjacket/pywlroots";
    description = "Python bindings to wlroots using cffi";
    license = licenses.ncsa;
    platforms = platforms.linux;
    maintainers = with maintainers; [ chvp ];
  };
}