python3Packages.mpv: don't use xorg package set

The package set has been deprecated in
https://github.com/NixOS/nixpkgs/pull/479724 and its usage is causing
eval failures on staging.

Signed-off-by: Marcin Serwin <marcin@serwin.dev>
This commit is contained in:
Marcin Serwin
2026-02-04 17:40:53 +01:00
parent aba80eebd4
commit 564255f230
@@ -7,7 +7,7 @@
setuptools,
pytestCheckHook,
pyvirtualdisplay,
xorg,
xvfb,
}:
buildPythonPackage rec {
@@ -37,7 +37,7 @@ buildPythonPackage rec {
pyvirtualdisplay
]
++ lib.optionals stdenv.isLinux [
xorg.xvfb
xvfb
];
pythonImportsCheck = [ "mpv" ];