python3Packages.pywlroots: disable on older Python releases

This commit is contained in:
Fabian Affolter 2022-04-19 13:52:48 +02:00 committed by GitHub
parent 42973eb2be
commit 635d888296
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;