tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.apkinspector: format with nixfmt
Fabian Affolter
2 years ago
6cec50ee
67da5a7e
+9
-12
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
apkinspector
default.nix
+9
-12
pkgs/development/python-modules/apkinspector/default.nix
···
1
-
{ lib
2
-
, buildPythonPackage
3
-
, fetchPypi
4
-
, poetry-core
5
-
, pytestCheckHook
6
-
, pythonOlder
0
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 ];
0
0
23
24
# Tests are not available
25
# https://github.com/erev0s/apkInspector/issues/21
26
doCheck = false;
27
28
+
pythonImportsCheck = [ "apkInspector" ];
0
0
29
30
meta = with lib; {
31
description = "Module designed to provide detailed insights into the zip structure of APK files";