1{ stdenv, buildPythonPackage, fetchPypi, requests, protobuf, pycryptodome }:
2
3buildPythonPackage rec {
4 version = "0.4.2";
5 pname = "gpapi";
6
7 src = fetchPypi {
8 inherit version pname;
9 sha256 = "1fv2y3xbwn512fjxrdwgq6cz0xjd7mh54nq1f18wyz8w40vcznns";
10 };
11
12 propagatedBuildInputs = [ requests protobuf pycryptodome ];
13
14 meta = with stdenv.lib; {
15 homepage = https://github.com/NoMore201/googleplay-api;
16 license = licenses.gpl3;
17 description = "Google Play Unofficial Python API";
18 maintainers = with maintainers; [ ma27 ];
19 };
20}