nixos/tests/mpv.nix: get rid of `with lib`

Changed files
+1 -3
nixos
tests
+1 -3
nixos/tests/mpv.nix
···
import ./make-test-python.nix ({ lib, ... }:
-
with lib;
-
let
port = toString 4321;
in
{
name = "mpv";
-
meta.maintainers = with maintainers; [ zopieux ];
nodes.machine =
{ pkgs, ... }:
···
import ./make-test-python.nix ({ lib, ... }:
let
port = toString 4321;
in
{
name = "mpv";
+
meta.maintainers = with lib.maintainers; [ zopieux ];
nodes.machine =
{ pkgs, ... }: