blob: bdd628a6a0a7fa576aa85dd28412a04667e93080 (
plain)
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
|
{
lib,
buildPythonPackage,
cffi,
fetchPypi,
pytestCheckHook,
xorg,
}:
buildPythonPackage rec {
pname = "xcffib";
version = "1.9.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-K6xgY2lnVOiHHC9AcwR7Uz792Cx33fhnYgEWcJfMUlM=";
};
postPatch = ''
# Hardcode cairo library path
sed -e 's,ffi\.dlopen(,&"${xorg.libxcb.out}/lib/" + ,' -i xcffib/__init__.py
'';
propagatedNativeBuildInputs = [ cffi ];
propagatedBuildInputs = [ cffi ];
nativeCheckInputs = [
pytestCheckHook
xorg.xeyes
xorg.xvfb
];
preCheck = ''
# import from $out
rm -r xcffib
'';
pythonImportsCheck = [ "xcffib" ];
# Tests use xvfb
__darwinAllowLocalNetworking = true;
meta = {
description = "Drop in replacement for xpyb, an XCB python binding";
homepage = "https://github.com/tych0/xcffib";
changelog = "https://github.com/tych0/xcffib/releases/tag/v${version}";
license = lib.licenses.asl20;
platforms = lib.platforms.linux ++ lib.platforms.darwin ++ lib.platforms.windows;
maintainers = with lib.maintainers; [ kamilchm ];
};
}
|