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

python312Packages.apkinspector: 1.2.2 -> 1.2.3

authored by Fabian Affolter and committed by GitHub 95f85118 cfbc0b71

+18 -20
+18 -20
pkgs/development/python-modules/apkinspector/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , poetry-core 5 - , pytestCheckHook 6 - , pythonOlder 7 }: 8 9 buildPythonPackage rec { 10 pname = "apkinspector"; 11 - version = "1.2.2"; 12 pyproject = true; 13 14 disabled = pythonOlder "3.8"; 15 16 - src = fetchPypi { 17 - inherit pname version; 18 - hash = "sha256-6n5WCQ6V63kbWT6b7t9PEFbrJpxEg1WOE9XV70tHnGA="; 19 }; 20 21 - nativeBuildInputs = [ 22 - poetry-core 23 - ]; 24 25 - # Tests are not available 26 - # https://github.com/erev0s/apkInspector/issues/21 27 - doCheck = false; 28 29 - pythonImportsCheck = [ 30 - "apkInspector" 31 - ]; 32 33 meta = with lib; { 34 description = "Module designed to provide detailed insights into the zip structure of APK files"; 35 - mainProgram = "apkInspector"; 36 homepage = "https://github.com/erev0s/apkInspector"; 37 license = licenses.asl20; 38 maintainers = with maintainers; [ fab ]; 39 }; 40 }
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + poetry-core, 6 + pytestCheckHook, 7 + pythonOlder, 8 }: 9 10 buildPythonPackage rec { 11 pname = "apkinspector"; 12 + version = "1.2.3"; 13 pyproject = true; 14 15 disabled = pythonOlder "3.8"; 16 17 + src = fetchFromGitHub { 18 + owner = "erev0s"; 19 + repo = "apkInspector"; 20 + rev = "refs/tags/v${version}"; 21 + hash = "sha256-n6uVyN5XBEM/nuN7mvhNRwMUgUT5abOsh3CbhKK6ifY="; 22 }; 23 24 + build-system = [ poetry-core ]; 25 26 + nativeCheckInputs = [ pytestCheckHook ]; 27 28 + pythonImportsCheck = [ "apkInspector" ]; 29 30 meta = with lib; { 31 description = "Module designed to provide detailed insights into the zip structure of APK files"; 32 homepage = "https://github.com/erev0s/apkInspector"; 33 + changelog = "https://github.com/erev0s/apkInspector/releases/tag/v${version}"; 34 license = licenses.asl20; 35 maintainers = with maintainers; [ fab ]; 36 + mainProgram = "apkInspector"; 37 }; 38 }