83405b6dd2
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
51 lines
1.1 KiB
Nix
51 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, python
|
|
, cffi
|
|
, pkg-config
|
|
, libxkbcommon
|
|
, libinput
|
|
, pixman
|
|
, pythonOlder
|
|
, udev
|
|
, wlroots_0_16
|
|
, wayland
|
|
, pywayland
|
|
, xkbcommon
|
|
, xorg
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pywlroots";
|
|
version = "0.16.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-GFJw88N0313PudM0o/jOvtoE3u8kSoV+lYgKlNya4wM=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
propagatedNativeBuildInputs = [ cffi ];
|
|
buildInputs = [ libinput libxkbcommon pixman xorg.libxcb udev wayland wlroots_0_16 ];
|
|
propagatedBuildInputs = [ cffi pywayland xkbcommon ];
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
postBuild = ''
|
|
${python.pythonForBuild.interpreter} wlroots/ffi_build.py
|
|
'';
|
|
|
|
pythonImportsCheck = [ "wlroots" ];
|
|
|
|
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 ];
|
|
};
|
|
}
|