nixpkgs/pkgs/tools/audio/google-music-scripts/default.nix

35 lines
799 B
Nix
Raw Normal View History

2019-01-11 00:15:00 +01:00
{ lib, python3 }:
python3.pkgs.buildPythonApplication rec {
pname = "google-music-scripts";
2019-03-15 19:53:14 +01:00
version = "4.0.1";
2019-01-11 00:15:00 +01:00
src = python3.pkgs.fetchPypi {
inherit pname version;
2019-03-15 19:53:14 +01:00
sha256 = "5b2e9fdde8781a6d226984f0b61add2415a3804123ceeecb20fcc8527de9389d";
2019-01-11 00:15:00 +01:00
};
propagatedBuildInputs = with python3.pkgs; [
appdirs
audio-metadata
google-music
2019-03-15 19:53:14 +01:00
google-music-proto
2019-01-11 00:15:00 +01:00
google-music-utils
2019-03-15 19:53:14 +01:00
#loguru
pendulum
natsort
2019-01-11 00:15:00 +01:00
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 ];
2019-03-15 19:53:14 +01:00
broken = true; # 2019-03-15, missing dependency loguru
2019-01-11 00:15:00 +01:00
};
}