nixpkgs/pkgs/by-name/pr/prowler/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

82 lines
1.7 KiB
Nix
Raw Normal View History

2024-04-03 18:05:57 +00:00
{
lib,
python3,
fetchFromGitHub,
}:
python3.pkgs.buildPythonApplication rec {
pname = "prowler";
version = "4.4.1";
pyproject = true;
src = fetchFromGitHub {
owner = "prowler-cloud";
repo = "prowler";
rev = "refs/tags/${version}";
hash = "sha256-9pqp9DJKvzOzApWuSXNn7uQ4bxdPmQ9QtOEAlbrT9Eg=";
};
2024-07-14 11:21:24 +00:00
pythonRelaxDeps = true;
build-system = with python3.pkgs; [ poetry-core ];
2024-04-03 18:07:21 +00:00
dependencies = with python3.pkgs; [
alive-progress
awsipranges
azure-identity
azure-keyvault-keys
azure-mgmt-applicationinsights
azure-mgmt-authorization
azure-mgmt-compute
azure-mgmt-containerregistry
azure-mgmt-containerservice
azure-mgmt-cosmosdb
azure-mgmt-keyvault
azure-mgmt-monitor
azure-mgmt-network
azure-mgmt-rdbms
azure-mgmt-resource
azure-mgmt-security
azure-mgmt-sql
azure-mgmt-storage
azure-mgmt-subscription
azure-mgmt-web
azure-storage-blob
boto3
botocore
colorama
2024-10-27 07:36:21 +00:00
cryptography
dash
dash-bootstrap-components
detect-secrets
google-api-python-client
google-auth-httplib2
jsonschema
kubernetes
2024-10-27 07:36:21 +00:00
microsoft-kiota-abstractions
msgraph-sdk
numpy
pandas
py-ocsf-models
pydantic
2024-10-27 07:36:21 +00:00
python-dateutil
pytz
schema
shodan
slack-sdk
tabulate
tzlocal
];
2024-04-03 18:05:57 +00:00
pythonImportsCheck = [ "prowler" ];
meta = with lib; {
description = "Security tool for AWS, Azure and GCP to perform Cloud Security best practices assessments";
homepage = "https://github.com/prowler-cloud/prowler";
changelog = "https://github.com/prowler-cloud/prowler/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
mainProgram = "prowler";
};
}