Merge pull request #305451 from r-ryantm/auto-update/python312Packages.apkinspector

python312Packages.apkinspector: 1.2.2 -> 1.2.3
This commit is contained in:
Fabian Affolter 2024-04-20 11:55:02 +02:00 committed by GitHub
commit 95f8511864
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,40 +1,38 @@
{ lib {
, buildPythonPackage lib,
, fetchPypi buildPythonPackage,
, poetry-core fetchFromGitHub,
, pytestCheckHook poetry-core,
, pythonOlder pytestCheckHook,
pythonOlder,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "apkinspector"; pname = "apkinspector";
version = "1.2.2"; version = "1.2.3";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
src = fetchPypi { src = fetchFromGitHub {
inherit pname version; owner = "erev0s";
hash = "sha256-6n5WCQ6V63kbWT6b7t9PEFbrJpxEg1WOE9XV70tHnGA="; repo = "apkInspector";
rev = "refs/tags/v${version}";
hash = "sha256-n6uVyN5XBEM/nuN7mvhNRwMUgUT5abOsh3CbhKK6ifY=";
}; };
nativeBuildInputs = [ build-system = [ poetry-core ];
poetry-core
];
# Tests are not available nativeCheckInputs = [ pytestCheckHook ];
# https://github.com/erev0s/apkInspector/issues/21
doCheck = false;
pythonImportsCheck = [ pythonImportsCheck = [ "apkInspector" ];
"apkInspector"
];
meta = with lib; { meta = with lib; {
description = "Module designed to provide detailed insights into the zip structure of APK files"; description = "Module designed to provide detailed insights into the zip structure of APK files";
mainProgram = "apkInspector";
homepage = "https://github.com/erev0s/apkInspector"; homepage = "https://github.com/erev0s/apkInspector";
changelog = "https://github.com/erev0s/apkInspector/releases/tag/v${version}";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
mainProgram = "apkInspector";
}; };
} }