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