pythonPackages.google-music-proto: init at 2.2.0

This commit is contained in:
Jake Waksbaum 2019-01-10 17:12:52 +00:00
parent ec669e2ca3
commit e27bef23f1
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,37 @@
{ lib, buildPythonPackage, fetchPypi, pythonOlder
, attrs
, audio-metadata
, marshmallow
, pendulum
, protobuf
}:
buildPythonPackage rec {
pname = "google-music-proto";
version = "2.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "008nap32hcrlnkkqkf462vwnm6xzrn6fj71lbryfmrakad7rz7bc";
};
propagatedBuildInputs = [
attrs
audio-metadata
marshmallow
pendulum
protobuf
];
# No tests
doCheck = false;
disabled = pythonOlder "3.6";
meta = with lib; {
homepage = https://github.com/thebigmunch/google-music-proto;
description = "Sans-I/O wrapper of Google Music API calls";
license = licenses.mit;
maintainers = with maintainers; [ jakewaksbaum ];
};
}

View File

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