2018-03-10 23:09:11 +00:00
|
|
|
{ buildPythonPackage, stdenv, libffi, isPy3k, pyasn1, clint, ndg-httpsclient
|
|
|
|
, protobuf, requests, args, gpapi, pyaxmlparser, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2018-06-23 14:27:58 +01:00
|
|
|
pname = "gplaycli";
|
2018-03-10 23:09:11 +00:00
|
|
|
version = "3.21";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "matlink";
|
|
|
|
repo = "gplaycli";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "1r5nzi9yzswam0866gypjcvv3f1rw13jwx9s49chp8byxy1dyrs2";
|
|
|
|
};
|
|
|
|
|
|
|
|
disabled = !isPy3k;
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ libffi pyasn1 clint ndg-httpsclient protobuf requests args gpapi pyaxmlparser ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/matlink/gplaycli;
|
|
|
|
description = "Google Play Downloader via Command line";
|
|
|
|
license = licenses.agpl3Plus;
|
|
|
|
maintainers = with maintainers; [ ma27 ];
|
|
|
|
};
|
|
|
|
}
|