nixpkgs/pkgs/development/python-modules/gplaycli/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

79 lines
1.4 KiB
Nix

{ 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";
rev = "refs/tags/${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 = with maintainers; [ ];
};
}