nixpkgs/pkgs/development/python-modules/gmusicapi/default.nix
R. RyanTM 38dc22bd9d python37Packages.gmusicapi: 12.0.0 -> 12.1.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-gmusicapi/versions
2019-10-11 12:01:20 +02:00

38 lines
772 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, validictory
, decorator
, mutagen
, protobuf
, setuptools
, requests
, dateutil
, proboscis
, mock
, appdirs
, oauth2client
, pyopenssl
, gpsoauth
, MechanicalSoup
, future
}:
buildPythonPackage rec {
pname = "gmusicapi";
version = "12.1.1";
src = fetchPypi {
inherit pname version;
sha256 = "1cgjxqi4a18zp5dx7v71h6wiy3cvggyydkrs008dsfgyhg8s89d8";
};
propagatedBuildInputs = [ validictory decorator mutagen protobuf setuptools requests dateutil proboscis mock appdirs oauth2client pyopenssl gpsoauth MechanicalSoup future ];
meta = with stdenv.lib; {
description = "An unofficial API for Google Play Music";
homepage = https://pypi.python.org/pypi/gmusicapi/;
license = licenses.bsd3;
};
}