python3Packages.gpapi: unbreak

This commit is contained in:
DavHau 2021-05-09 19:23:01 +07:00
parent 2c1a792911
commit 1dce8840d2

View File

@ -1,7 +1,11 @@
{ lib, buildPythonPackage, fetchPypi, pythonOlder { buildPythonPackage
, requests , cryptography
, fetchPypi
, lib
, pythonOlder
, protobuf , protobuf
, pycryptodome , pycryptodome
, requests
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -14,11 +18,15 @@ buildPythonPackage rec {
sha256 = "0ampvsv97r3hy1cakif4kmyk1ynf3scbvh4fbk02x7xrxn4kl38w"; sha256 = "0ampvsv97r3hy1cakif4kmyk1ynf3scbvh4fbk02x7xrxn4kl38w";
}; };
propagatedBuildInputs = [ requests protobuf pycryptodome ]; doCheck = false;
pythonImportsCheck = [ "gpapi.googleplay" ];
propagatedBuildInputs = [ cryptography protobuf pycryptodome requests ];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/NoMore201/googleplay-api"; homepage = "https://github.com/NoMore201/googleplay-api";
license = licenses.gpl3; license = licenses.gpl3Only;
description = "Google Play Unofficial Python API"; description = "Google Play Unofficial Python API";
maintainers = with maintainers; [ ]; maintainers = with maintainers; [ ];
}; };