Unverified Commit 706797e8 authored by Vladimír Čunát's avatar Vladimír Čunát
Browse files

python3Packages.jeepney: nixfmt

Otherwise CI is complaining that we regressed in this respect:
https://github.com/NixOS/nixpkgs/actions/runs/13998071354/job/39198029124?pr=389579
parent f02955ed
Loading
Loading
Loading
Loading
+12 −10
Original line number Diff line number Diff line
@@ -28,14 +28,16 @@ buildPythonPackage rec {

  build-system = [ flit-core ];

  nativeCheckInputs = [
  nativeCheckInputs =
    [
      dbus
      pytest
      pytest-trio
      pytest-asyncio
      testpath
      trio
  ] ++ lib.optionals (pythonOlder "3.11") [
    ]
    ++ lib.optionals (pythonOlder "3.11") [
      async-timeout
    ];