summary refs log blame commit diff
path: root/pkgs/development/python-modules/gmusicapi/default.nix
blob: 821e0ba0afa994e84379fcd32390d1c142571895 (plain) (tree)
1
             




















                        
                     


                          
                                                                    



                                                                                                                                                                               
                    
                                                            
                                                         


                            
{ lib, stdenv
, buildPythonPackage
, fetchPypi
, validictory
, decorator
, mutagen
, protobuf
, setuptools
, requests
, dateutil
, proboscis
, mock
, appdirs
, oauth2client
, pyopenssl
, gpsoauth
, MechanicalSoup
, future
}:

buildPythonPackage rec {
  pname = "gmusicapi";
  version = "13.0.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "14dqs64nhy84dykyyrdjmsirc7m169zsvwa8abh4v0xcm658lm5k";
  };

  propagatedBuildInputs = [ validictory decorator mutagen protobuf setuptools requests dateutil proboscis mock appdirs oauth2client pyopenssl gpsoauth MechanicalSoup future ];

  meta = with lib; {
    description = "An unofficial API for Google Play Music";
    homepage = "https://pypi.python.org/pypi/gmusicapi/";
    license = licenses.bsd3;
  };
}