11 buildPythonPackage rec {
13 format = "setuptools";
14 pname = "matlink-gpapi";
15 disabled = pythonOlder "3.3"; # uses shutil.which(), added in 3.3
18 inherit version pname;
19 sha256 = "0s45yb2xiq3pc1fh4bygfgly0fsjk5fkc4wckbckn3ddl7v7vz8c";
22 # package doesn't contain unit tests
23 # scripts in ./test require networking
26 pythonImportsCheck = [ "gpapi.googleplay" ];
28 propagatedBuildInputs = [ cryptography protobuf pycryptodome requests ];
31 homepage = "https://github.com/NoMore201/googleplay-api";
32 license = licenses.gpl3Only;
33 description = "Google Play Unofficial Python API";
34 maintainers = with maintainers; [ schnusch ];