pythonPackages.google-music: init at 3.0.1

This commit is contained in:
Jake Waksbaum 2019-01-10 17:18:21 +00:00
parent e9e7c08ca6
commit a323466604
2 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,39 @@
{ lib, buildPythonPackage, fetchPypi, pythonOlder
, appdirs
, audio-metadata
, google-music-proto
, protobuf
, requests_oauthlib
, tenacity
}:
buildPythonPackage rec {
pname = "google-music";
version = "3.0.1";
src = fetchPypi {
inherit pname version;
sha256 = "13i9nd62wqfg0f5r7ykr15q83397vdpw0js50fy5nbgs33sbf6b7";
};
propagatedBuildInputs = [
appdirs
audio-metadata
google-music-proto
protobuf
requests_oauthlib
tenacity
];
# No tests
doCheck = false;
disabled = pythonOlder "3.6";
meta = with lib; {
homepage = https://github.com/thebigmunch/google-music;
description = "A Google Music API wrapper";
license = licenses.mit;
maintainers = with maintainers; [ jakewaksbaum ];
};
}

View File

@ -1797,6 +1797,8 @@ in {
google-compute-engine = callPackage ../tools/virtualization/google-compute-engine { };
google-music = callPackage ../development/python-modules/google-music { };
google-music-proto = callPackage ../development/python-modules/google-music-proto { };
google-music-utils = callPackage ../development/python-modules/google-music-utils { };