Merge pull request #221793 from chvp/downgrade-pywlroots

python3Packages.pywlroots: revert to pywlroots 0.15.24
This commit is contained in:
Lily Foster 2023-03-18 14:58:16 -04:00 committed by GitHub
commit 738aef5117
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,29 +9,30 @@
, pixman
, pythonOlder
, udev
, wlroots_0_16
, wlroots
, wayland
, pywayland
, xkbcommon
, xorg
, pytestCheckHook
, qtile
}:
buildPythonPackage rec {
pname = "pywlroots";
version = "0.16.1";
version = "0.15.24";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-GFJw88N0313PudM0o/jOvtoE3u8kSoV+lYgKlNya4wM=";
hash = "sha256-TvYhxiAbK+mpcEE9y79WH96dzeDnvI0xPaUxSYQqyHE=";
};
nativeBuildInputs = [ pkg-config ];
propagatedNativeBuildInputs = [ cffi ];
buildInputs = [ libinput libxkbcommon pixman xorg.libxcb udev wayland wlroots_0_16 ];
buildInputs = [ libinput libxkbcommon pixman xorg.libxcb udev wayland wlroots ];
propagatedBuildInputs = [ cffi pywayland xkbcommon ];
nativeCheckInputs = [ pytestCheckHook ];
@ -41,6 +42,8 @@ buildPythonPackage rec {
pythonImportsCheck = [ "wlroots" ];
passthru.tests = { inherit qtile; };
meta = with lib; {
homepage = "https://github.com/flacjacket/pywlroots";
description = "Python bindings to wlroots using cffi";