From decabdd08b933db61587f323a6ee203e2d0b23f1 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 13 May 2024 15:29:07 +0200 Subject: [PATCH] python312Packages.ytmusicapi: format with nixfmt --- .../python-modules/ytmusicapi/default.nix | 23 ++++++++----------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/pkgs/development/python-modules/ytmusicapi/default.nix b/pkgs/development/python-modules/ytmusicapi/default.nix index 7fc164583699..edaae03db7cc 100644 --- a/pkgs/development/python-modules/ytmusicapi/default.nix +++ b/pkgs/development/python-modules/ytmusicapi/default.nix @@ -1,10 +1,11 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, pythonOlder -, requests -, setuptools -, setuptools-scm +{ + lib, + buildPythonPackage, + fetchFromGitHub, + pythonOlder, + requests, + setuptools, + setuptools-scm, }: buildPythonPackage rec { @@ -26,15 +27,11 @@ buildPythonPackage rec { setuptools-scm ]; - dependencies = [ - requests - ]; + dependencies = [ requests ]; doCheck = false; # requires network access - pythonImportsCheck = [ - "ytmusicapi" - ]; + pythonImportsCheck = [ "ytmusicapi" ]; meta = with lib; { description = "Python API for YouTube Music";