Files
nixpkgs/pkgs/development/python-modules/gplaycli/default.nix
T

27 lines
741 B
Nix
Raw Normal View History

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