pythonPackages.gplaycli: 0.1.2 -> 3.21
Fix the broken package: https://hydra.nixos.org/build/70687256/log The newer version requires two new dependencies that have been added as well: - gpapi (Unofficial Python API for Google Play) at version 0.4.2 - pyaxmlparser (Parser for Android's XML handler) at version 0.3.7 See ticket #36453 See https://hydra.nixos.org/build/70687256/log
This commit is contained in:
20
pkgs/development/python-modules/gpapi/default.nix
Normal file
20
pkgs/development/python-modules/gpapi/default.nix
Normal file
@@ -0,0 +1,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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user