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
hash = "sha256-HMWb9NScT4rRMFsUXw6TW/T0P1eH0a46OegUZ0JceiE=";
22
};
23
24
-
nativeBuildInputs = [
25
setuptools
26
setuptools-scm
27
];
28
29
-
propagatedBuildInputs = [
30
requests
31
];
32
···
38
39
meta = with lib; {
40
description = "Python API for YouTube Music";
41
-
mainProgram = "ytmusicapi";
42
homepage = "https://github.com/sigma67/ytmusicapi";
43
changelog = "https://github.com/sigma67/ytmusicapi/releases/tag/${version}";
44
license = licenses.mit;
45
maintainers = with maintainers; [ dotlambda ];
0
46
};
47
}
···
21
hash = "sha256-HMWb9NScT4rRMFsUXw6TW/T0P1eH0a46OegUZ0JceiE=";
22
};
23
24
+
build-system = [
25
setuptools
26
setuptools-scm
27
];
28
29
+
dependencies = [
30
requests
31
];
32
···
38
39
meta = with lib; {
40
description = "Python API for YouTube Music";
0
41
homepage = "https://github.com/sigma67/ytmusicapi";
42
changelog = "https://github.com/sigma67/ytmusicapi/releases/tag/${version}";
43
license = licenses.mit;
44
maintainers = with maintainers; [ dotlambda ];
45
+
mainProgram = "ytmusicapi";
46
};
47
}