Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python312Packages.apkinspector: format with nixfmt

+9 -12
+9 -12
pkgs/development/python-modules/apkinspector/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , poetry-core 5 - , pytestCheckHook 6 - , pythonOlder 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchPypi, 5 + poetry-core, 6 + pytestCheckHook, 7 + pythonOlder, 7 8 }: 8 9 9 10 buildPythonPackage rec { ··· 18 19 hash = "sha256-EztaCoUVbV9pIoba4X4liqPRZiZB6F65PB9cdb/eA+A="; 19 20 }; 20 21 21 - build-system = [ 22 - poetry-core 23 - ]; 22 + build-system = [ poetry-core ]; 24 23 25 24 # Tests are not available 26 25 # https://github.com/erev0s/apkInspector/issues/21 27 26 doCheck = false; 28 27 29 - pythonImportsCheck = [ 30 - "apkInspector" 31 - ]; 28 + pythonImportsCheck = [ "apkInspector" ]; 32 29 33 30 meta = with lib; { 34 31 description = "Module designed to provide detailed insights into the zip structure of APK files";