gcp-scanner: init at 1.3.0
A comprehensive scanner for Google Cloud https://github.com/google/gcp_scanner
This commit is contained in:
parent
d08965eda2
commit
5bb41dcaef
1 changed files with 54 additions and 0 deletions
54
pkgs/by-name/gc/gcp-scanner/package.nix
Normal file
54
pkgs/by-name/gc/gcp-scanner/package.nix
Normal file
|
@ -0,0 +1,54 @@
|
|||
{ lib
|
||||
, python3
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "gcp-scanner";
|
||||
version = "1.3.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "google";
|
||||
repo = "gcp_scanner";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-mMvAoqwptCA73JiUl8HIhFBO198NnUmvCbf8Rk9dWxA=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = with python3.pkgs; [
|
||||
setuptools
|
||||
setuptools-git-versioning
|
||||
];
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
google-api-python-client
|
||||
google-cloud-container
|
||||
google-cloud-iam
|
||||
httplib2
|
||||
pyu2f
|
||||
requests
|
||||
];
|
||||
|
||||
nativeCheckInputs = with python3.pkgs; [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"gcp_scanner"
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
# Tests require credentials
|
||||
"TestCrawler"
|
||||
"test_acceptance"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A comprehensive scanner for Google Cloud";
|
||||
homepage = "https://github.com/google/gcp_scanner";
|
||||
changelog = "https://github.com/google/gcp_scanner/blob/${version}/CHANGELOG.md";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
mainProgram = "gcp-scanner";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue