python312Packages.apkinspector: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-20 10:50:01 +02:00
parent 67da5a7e38
commit 6cec50eeb0

View File

@ -1,9 +1,10 @@
{ lib
, buildPythonPackage
, fetchPypi
, poetry-core
, pytestCheckHook
, pythonOlder
{
lib,
buildPythonPackage,
fetchPypi,
poetry-core,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
@ -18,17 +19,13 @@ buildPythonPackage rec {
hash = "sha256-EztaCoUVbV9pIoba4X4liqPRZiZB6F65PB9cdb/eA+A=";
};
build-system = [
poetry-core
];
build-system = [ poetry-core ];
# Tests are not available
# https://github.com/erev0s/apkInspector/issues/21
doCheck = false;
pythonImportsCheck = [
"apkInspector"
];
pythonImportsCheck = [ "apkInspector" ];
meta = with lib; {
description = "Module designed to provide detailed insights into the zip structure of APK files";