mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
google-music-scripts: init at 3.0.0
This commit is contained in:
parent
fe4f244c19
commit
bc820fa1e4
32
pkgs/tools/audio/google-music-scripts/default.nix
Normal file
32
pkgs/tools/audio/google-music-scripts/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{ lib, python3 }:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "google-music-scripts";
|
||||
version = "3.0.0";
|
||||
|
||||
src = python3.pkgs.fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "12risivi11z3shrgs1kpi7x6lvk113cbp3dnczw9mmqhb4mmwviy";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
appdirs
|
||||
audio-metadata
|
||||
click
|
||||
click-default-group
|
||||
google-music
|
||||
google-music-utils
|
||||
logzero
|
||||
tomlkit
|
||||
];
|
||||
|
||||
# No tests
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
homepage = https://github.com/thebigmunch/google-music-scripts;
|
||||
description = "A CLI utility for interacting with Google Music";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ jakewaksbaum ];
|
||||
};
|
||||
}
|
|
@ -3045,6 +3045,8 @@ in
|
|||
|
||||
google-compute-engine-oslogin = callPackage ../tools/virtualization/google-compute-engine-oslogin { };
|
||||
|
||||
google-music-scripts = callPackage ../tools/audio/google-music-scripts { };
|
||||
|
||||
gource = callPackage ../applications/version-management/gource { };
|
||||
|
||||
govc = callPackage ../tools/virtualization/govc { };
|
||||
|
|
Loading…
Reference in a new issue