blob: 4dc2fb89330dcf642c132f823fda25df3f5be344 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
python,
cffi,
pkg-config,
wayland,
wayland-scanner,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pywayland";
version = "0.4.18";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-WYreAng6rQWjKPZjtRtpTFq2i9XR4JJsDaPFISxWZTM=";
};
depsBuildBuild = [ pkg-config ];
nativeBuildInputs = [ wayland-scanner ];
propagatedNativeBuildInputs = [ cffi ];
buildInputs = [ wayland ];
propagatedBuildInputs = [ cffi ];
nativeCheckInputs = [ pytestCheckHook ];
postBuild = ''
${python.pythonOnBuildForHost.interpreter} pywayland/ffi_build.py
'';
# Tests need this to create sockets
preCheck = ''
export XDG_RUNTIME_DIR="$PWD"
'';
pythonImportsCheck = [ "pywayland" ];
meta = with lib; {
homepage = "https://github.com/flacjacket/pywayland";
description = "Python bindings to wayland using cffi";
mainProgram = "pywayland-scanner";
license = licenses.ncsa;
maintainers = with maintainers; [ chvp ];
};
}
|