From 8b7c79c8ba4b5e77a8ffadb4e065e26870eb8b23 Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Sat, 18 Mar 2023 10:11:29 +0100 Subject: [PATCH] python3Packages.pywlroots: revert to pywlroots 0.15.24 This reverts commit b60a1fef4af412cb7c456a3199bcdc25f6783c3b and commit 6378b8bc0f55e50ad0278928fe07e8bfa944fd4b. pywlroots 0.16 isn't compatible with qtile, its only reverse dependency. --- pkgs/development/python-modules/pywlroots/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/pywlroots/default.nix b/pkgs/development/python-modules/pywlroots/default.nix index 8d547239f089..53f583cc7c28 100644 --- a/pkgs/development/python-modules/pywlroots/default.nix +++ b/pkgs/development/python-modules/pywlroots/default.nix @@ -9,7 +9,7 @@ , pixman , pythonOlder , udev -, wlroots_0_16 +, wlroots , wayland , pywayland , xkbcommon @@ -19,19 +19,19 @@ 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 ];