33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
52 lines
1.0 KiB
Nix
52 lines
1.0 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, python
|
|
, cffi
|
|
, pkg-config
|
|
, libxkbcommon
|
|
, libinput
|
|
, pixman
|
|
, pythonOlder
|
|
, udev
|
|
, wlroots
|
|
, wayland
|
|
, pywayland
|
|
, xkbcommon
|
|
, xorg
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pywlroots";
|
|
version = "0.15.24";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-TvYhxiAbK+mpcEE9y79WH96dzeDnvI0xPaUxSYQqyHE=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
propagatedNativeBuildInputs = [ cffi ];
|
|
buildInputs = [ libinput libxkbcommon pixman xorg.libxcb udev wayland wlroots ];
|
|
propagatedBuildInputs = [ cffi pywayland xkbcommon ];
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
postBuild = ''
|
|
${python.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 ];
|
|
};
|
|
}
|