Commit 11fb14f7 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.plexapi: format with nixfmt

parent 801ec601
Loading
Loading
Loading
Loading
+11 −14
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, requests
, setuptools
, tqdm
, websocket-client
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  pythonOlder,
  requests,
  setuptools,
  tqdm,
  websocket-client,
}:

buildPythonPackage rec {
@@ -22,9 +23,7 @@ buildPythonPackage rec {
    hash = "sha256-i898cHYOSrzSreWBmW7W9QBUoyIDKwmt4k2wgutN3bw=";
  };

  build-system = [
    setuptools
  ];
  build-system = [ setuptools ];

  dependencies = [
    requests
@@ -35,9 +34,7 @@ buildPythonPackage rec {
  # Tests require a running Plex instance
  doCheck = false;

  pythonImportsCheck = [
    "plexapi"
  ];
  pythonImportsCheck = [ "plexapi" ];

  meta = with lib; {
    description = "Python bindings for the Plex API";