python312Packages.plexapi: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-05-19 10:26:12 +02:00
parent 801ec601b1
commit 11fb14f79b

View File

@ -1,11 +1,12 @@
{ 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";