1
0
Fork 1
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:
Jake Waksbaum 2019-01-10 23:15:00 +00:00
parent fe4f244c19
commit bc820fa1e4
2 changed files with 34 additions and 0 deletions

View 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 ];
};
}

View file

@ -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 { };