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
1
-
{ lib
2
2
-
, buildPythonPackage
3
3
-
, fetchPypi
4
4
-
, poetry-core
5
5
-
, pytestCheckHook
6
6
-
, pythonOlder
1
1
+
{
2
2
+
lib,
3
3
+
buildPythonPackage,
4
4
+
fetchPypi,
5
5
+
poetry-core,
6
6
+
pytestCheckHook,
7
7
+
pythonOlder,
7
8
}:
8
9
9
10
buildPythonPackage rec {
···
18
19
hash = "sha256-EztaCoUVbV9pIoba4X4liqPRZiZB6F65PB9cdb/eA+A=";
19
20
};
20
21
21
21
-
build-system = [
22
22
-
poetry-core
23
23
-
];
22
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
29
-
pythonImportsCheck = [
30
30
-
"apkInspector"
31
31
-
];
28
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";