46 lines
846 B
Nix
46 lines
846 B
Nix
{ lib
|
|
, beautifulsoup4
|
|
, buildPythonPackage
|
|
, click
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, pyyaml
|
|
, requests
|
|
, schema
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "policy-sentry";
|
|
version = "0.11.18";
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "salesforce";
|
|
repo = "policy_sentry";
|
|
rev = version;
|
|
sha256 = "sha256-1wpy4WofqrPusOI2BHRqSHfXlRpbuLOx97egzSAbB8E=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
beautifulsoup4
|
|
click
|
|
requests
|
|
pyyaml
|
|
schema
|
|
];
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "policy_sentry" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python module for generating IAM least privilege policies";
|
|
homepage = "https://github.com/salesforce/policy_sentry";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|