summary refs log tree commit diff
path: root/pkgs/development/python-modules/gpapi/default.nix
blob: da3bbcf28db39af2867b37b0595dbb71897dfdea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, fetchPypi, requests, protobuf, pycryptodome }:

buildPythonPackage rec {
  version = "0.4.2";
  pname = "gpapi";

  src = fetchPypi {
    inherit version pname;
    sha256 = "1fv2y3xbwn512fjxrdwgq6cz0xjd7mh54nq1f18wyz8w40vcznns";
  };

  propagatedBuildInputs = [ requests protobuf pycryptodome ];

  meta = with stdenv.lib; {
    homepage = https://github.com/NoMore201/googleplay-api;
    license = licenses.gpl3;
    description = "Google Play Unofficial Python API";
    maintainers = with maintainers; [ ma27 ];
  };
}