mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
41 lines
824 B
Nix
41 lines
824 B
Nix
{ lib
|
|
, 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 ];
|
|
|
|
doCheck = false;
|
|
pythonImportsCheck = [ "gmusicapi" ];
|
|
|
|
meta = with lib; {
|
|
description = "An unofficial API for Google Play Music";
|
|
homepage = "https://pypi.python.org/pypi/gmusicapi/";
|
|
license = licenses.bsd3;
|
|
};
|
|
}
|