tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.ytmusicapi: refactor
Fabian Affolter
2 years ago
3766327c
e52e33dd
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
ytmusicapi
default.nix
+3
-3
pkgs/development/python-modules/ytmusicapi/default.nix
···
21
21
hash = "sha256-HMWb9NScT4rRMFsUXw6TW/T0P1eH0a46OegUZ0JceiE=";
22
22
};
23
23
24
24
-
nativeBuildInputs = [
24
24
+
build-system = [
25
25
setuptools
26
26
setuptools-scm
27
27
];
28
28
29
29
-
propagatedBuildInputs = [
29
29
+
dependencies = [
30
30
requests
31
31
];
32
32
···
38
38
39
39
meta = with lib; {
40
40
description = "Python API for YouTube Music";
41
41
-
mainProgram = "ytmusicapi";
42
41
homepage = "https://github.com/sigma67/ytmusicapi";
43
42
changelog = "https://github.com/sigma67/ytmusicapi/releases/tag/${version}";
44
43
license = licenses.mit;
45
44
maintainers = with maintainers; [ dotlambda ];
45
45
+
mainProgram = "ytmusicapi";
46
46
};
47
47
}