python311Packages.apkinspector: init at 1.2.1
Module designed to provide detailed insights into the zip structure of APK files https://github.com/erev0s/apkInspector
This commit is contained in:
parent
5bc0439d70
commit
ddebbecf8d
2 changed files with 41 additions and 0 deletions
39
pkgs/development/python-modules/apkinspector/default.nix
Normal file
39
pkgs/development/python-modules/apkinspector/default.nix
Normal file
|
@ -0,0 +1,39 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, poetry-core
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "apkinspector";
|
||||
version = "1.2.1";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-bB/WeCRnYOdfg4bm9Nloa2QMxr2IJW8IZd+svUno4N0=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
poetry-core
|
||||
];
|
||||
|
||||
# Tests are not available
|
||||
# https://github.com/erev0s/apkInspector/issues/21
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"apkInspector"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Module designed to provide detailed insights into the zip structure of APK files";
|
||||
homepage = "https://github.com/erev0s/apkInspector";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -624,6 +624,8 @@ self: super: with self; {
|
|||
|
||||
apispec-webframeworks = callPackage ../development/python-modules/apispec-webframeworks { };
|
||||
|
||||
apkinspector = callPackage ../development/python-modules/apkinspector { };
|
||||
|
||||
apkit = callPackage ../development/python-modules/apkit { };
|
||||
|
||||
aplpy = callPackage ../development/python-modules/aplpy { };
|
||||
|
|
Loading…
Reference in a new issue