mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
53 lines
1.1 KiB
Nix
53 lines
1.1 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, python3
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "trueseeing";
|
|
version = "2.1.7";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "alterakey";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-pnIn+Rqun5J3F9cgeBUBX4e9WP5fgbm+vwN3Wqh/yEc=";
|
|
};
|
|
|
|
nativeBuildInputs = with python3.pkgs; [
|
|
flit-core
|
|
];
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
attrs
|
|
ipython
|
|
jinja2
|
|
lxml
|
|
pypubsub
|
|
pyyaml
|
|
docker
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace "attrs~=21.4" "attrs>=21.4" \
|
|
--replace "docker~=5.0.3" "docker"
|
|
'';
|
|
|
|
# Project has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"trueseeing"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Non-decompiling Android vulnerability scanner";
|
|
homepage = "https://github.com/alterakey/trueseeing";
|
|
changelog = "https://github.com/alterakey/trueseeing/releases/tag/v${version}";
|
|
license = with licenses; [ gpl3Plus ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|