forked from mirrors/nixpkgs
python3Packages.pywlroots: disable on older Python releases
This commit is contained in:
parent
42973eb2be
commit
635d888296
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue