2021-01-25 09:26:54 +01:00
|
|
|
{ buildPythonPackage, lib, libffi, isPy3k, pyasn1, clint, ndg-httpsclient
|
2021-12-06 12:36:03 +01:00
|
|
|
, protobuf, requests, args, matlink-gpapi, pyaxmlparser, setuptools, fetchFromGitHub
|
2018-03-11 00:09:11 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2018-06-23 15:27:58 +02:00
|
|
|
pname = "gplaycli";
|
2021-12-06 12:36:03 +01:00
|
|
|
version = "3.29";
|
2018-03-11 00:09:11 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "matlink";
|
|
|
|
repo = "gplaycli";
|
|
|
|
rev = version;
|
2021-12-06 12:36:03 +01:00
|
|
|
sha256 = "10gc1wr259z5hxyk834wyyggvyh82agfq0zp711s4jf334inp45r";
|
2018-03-11 00:09:11 +01:00
|
|
|
};
|
|
|
|
|
2018-10-31 18:47:41 +01:00
|
|
|
disabled = !isPy3k;
|
2018-03-11 00:09:11 +01:00
|
|
|
|
2021-12-06 12:36:03 +01:00
|
|
|
propagatedBuildInputs = [ libffi pyasn1 clint ndg-httpsclient protobuf requests args matlink-gpapi pyaxmlparser setuptools ];
|
2018-03-11 00:09:11 +01:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "https://github.com/matlink/gplaycli";
|
2018-03-11 00:09:11 +01:00
|
|
|
description = "Google Play Downloader via Command line";
|
|
|
|
license = licenses.agpl3Plus;
|
2019-12-26 15:13:48 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2018-03-11 00:09:11 +01:00
|
|
|
};
|
|
|
|
}
|