python3Packages.gplaycli: drop
This commit is contained in:
@@ -1,75 +0,0 @@
|
||||
{
|
||||
lib,
|
||||
args,
|
||||
buildPythonPackage,
|
||||
clint,
|
||||
fetchFromGitHub,
|
||||
libffi,
|
||||
matlink-gpapi,
|
||||
ndg-httpsclient,
|
||||
protobuf,
|
||||
pyasn1,
|
||||
pyaxmlparser,
|
||||
pytestCheckHook,
|
||||
pythonOlder,
|
||||
requests,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "gplaycli";
|
||||
version = "3.29";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "matlink";
|
||||
repo = "gplaycli";
|
||||
tag = version;
|
||||
hash = "sha256-uZBrIxnDSaJDOPcD7J4SCPr9nvecDDR9h+WnIjIP7IE=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
libffi
|
||||
pyasn1
|
||||
clint
|
||||
ndg-httpsclient
|
||||
protobuf
|
||||
requests
|
||||
args
|
||||
matlink-gpapi
|
||||
pyaxmlparser
|
||||
setuptools
|
||||
];
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
||||
pythonImportsCheck = [ "gplaycli" ];
|
||||
|
||||
preCheck = ''
|
||||
export PATH="$PATH:$out/bin";
|
||||
'';
|
||||
|
||||
disabledTests = [
|
||||
"test_alter_token"
|
||||
"test_another_device"
|
||||
"test_connection_credentials"
|
||||
"test_connection_token"
|
||||
"test_download_additional_files"
|
||||
"test_download_focus"
|
||||
"test_download_version"
|
||||
"test_download"
|
||||
"test_search"
|
||||
"test_update"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Google Play Downloader via Command line";
|
||||
mainProgram = "gplaycli";
|
||||
homepage = "https://github.com/matlink/gplaycli";
|
||||
changelog = "https://github.com/matlink/gplaycli/releases/tag/${version}";
|
||||
license = licenses.agpl3Plus;
|
||||
maintainers = [ ];
|
||||
};
|
||||
}
|
||||
@@ -184,6 +184,7 @@ mapAliases {
|
||||
google_api_python_client = throw "'google_api_python_client' has been renamed to/replaced by 'google-api-python-client'"; # Converted to throw 2025-10-29
|
||||
googleapis_common_protos = throw "'googleapis_common_protos' has been renamed to/replaced by 'googleapis-common-protos'"; # Converted to throw 2025-10-29
|
||||
gpapi = throw "'gpapi' has been removed as it was broken and lacked maintenance"; # Added 2025-11-09
|
||||
gplaycli = throw "'gplaycli' has been removed as it was broken and lacked maintenance"; # Added 2025-11-09
|
||||
gradient_statsd = throw "'gradient_statsd' has been renamed to/replaced by 'gradient-statsd'"; # Converted to throw 2025-10-29
|
||||
grappelli_safe = throw "'grappelli_safe' has been renamed to/replaced by 'grappelli-safe'"; # Converted to throw 2025-10-29
|
||||
groestlcoin_hash = throw "'groestlcoin_hash' has been renamed to/replaced by 'groestlcoin-hash'"; # Converted to throw 2025-10-29
|
||||
|
||||
@@ -6296,8 +6296,6 @@ self: super: with self; {
|
||||
|
||||
gpiozero = callPackage ../development/python-modules/gpiozero { };
|
||||
|
||||
gplaycli = callPackage ../development/python-modules/gplaycli { };
|
||||
|
||||
gprof2dot = callPackage ../development/python-modules/gprof2dot { inherit (pkgs) graphviz; };
|
||||
|
||||
gps3 = callPackage ../development/python-modules/gps3 { };
|
||||
|
||||
Reference in New Issue
Block a user