From 635d888296f777bca841a95a02f99e2c5b9eb396 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 19 Apr 2022 13:52:48 +0200 Subject: [PATCH] python3Packages.pywlroots: disable on older Python releases --- pkgs/development/python-modules/pywlroots/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/pywlroots/default.nix b/pkgs/development/python-modules/pywlroots/default.nix index c95418909dd..fdae8fdc104 100644 --- a/pkgs/development/python-modules/pywlroots/default.nix +++ b/pkgs/development/python-modules/pywlroots/default.nix @@ -7,6 +7,7 @@ , libxkbcommon , libinput , pixman +, pythonOlder , udev , wlroots , wayland @@ -19,6 +20,9 @@ buildPythonPackage rec { pname = "pywlroots"; version = "0.15.13"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version;