1{ buildPythonPackage, lib, libffi, isPy3k, pyasn1, clint, ndg-httpsclient
2, protobuf, requests, args, matlink-gpapi, pyaxmlparser, setuptools, fetchFromGitHub
3}:
4
5buildPythonPackage rec {
6 pname = "gplaycli";
7 version = "3.29";
8
9 src = fetchFromGitHub {
10 owner = "matlink";
11 repo = "gplaycli";
12 rev = version;
13 sha256 = "10gc1wr259z5hxyk834wyyggvyh82agfq0zp711s4jf334inp45r";
14 };
15
16 disabled = !isPy3k;
17
18 propagatedBuildInputs = [ libffi pyasn1 clint ndg-httpsclient protobuf requests args matlink-gpapi pyaxmlparser setuptools ];
19
20 meta = with lib; {
21 homepage = "https://github.com/matlink/gplaycli";
22 description = "Google Play Downloader via Command line";
23 license = licenses.agpl3Plus;
24 maintainers = with maintainers; [ ];
25 };
26}