44 lines
896 B
Nix
44 lines
896 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, python
|
|
, cffi
|
|
, pkg-config
|
|
, wayland
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pywayland";
|
|
version = "0.4.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0IMNOPTmY22JCHccIVuZxDhVr41cDcKNkx8bp+5h2CU=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
propagatedNativeBuildInputs = [ cffi ];
|
|
buildInputs = [ wayland ];
|
|
propagatedBuildInputs = [ cffi ];
|
|
checkInputs = [ pytestCheckHook ];
|
|
|
|
postBuild = ''
|
|
${python.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";
|
|
license = licenses.ncsa;
|
|
maintainers = with maintainers; [ chvp ];
|
|
};
|
|
}
|