tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.ytmusicapi: format with nixfmt
Fabian Affolter
2 years ago
decabdd0
3766327c
+10
-13
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
ytmusicapi
default.nix
+10
-13
pkgs/development/python-modules/ytmusicapi/default.nix
···
1
1
-
{ lib
2
2
-
, buildPythonPackage
3
3
-
, fetchFromGitHub
4
4
-
, pythonOlder
5
5
-
, requests
6
6
-
, setuptools
7
7
-
, setuptools-scm
1
1
+
{
2
2
+
lib,
3
3
+
buildPythonPackage,
4
4
+
fetchFromGitHub,
5
5
+
pythonOlder,
6
6
+
requests,
7
7
+
setuptools,
8
8
+
setuptools-scm,
8
9
}:
9
10
10
11
buildPythonPackage rec {
···
26
27
setuptools-scm
27
28
];
28
29
29
29
-
dependencies = [
30
30
-
requests
31
31
-
];
30
30
+
dependencies = [ requests ];
32
31
33
32
doCheck = false; # requires network access
34
33
35
35
-
pythonImportsCheck = [
36
36
-
"ytmusicapi"
37
37
-
];
34
34
+
pythonImportsCheck = [ "ytmusicapi" ];
38
35
39
36
meta = with lib; {
40
37
description = "Python API for YouTube Music";