61 lines
1.2 KiB
Nix
61 lines
1.2 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, python3
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "cfripper";
|
|
version = "1.13.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Skyscanner";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-wcOtj56l2bUYE+WdbDwtB3aWlP2zEAFaaqw4THcHxbY=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
boto3
|
|
cfn-flip
|
|
click
|
|
pluggy
|
|
pycfmodel
|
|
pydash
|
|
pyyaml
|
|
setuptools
|
|
];
|
|
|
|
nativeCheckInputs = with python3.pkgs; [
|
|
moto
|
|
pytestCheckHook
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "click~=7.1.1" "click" \
|
|
--replace "pluggy~=0.13.1" "pluggy" \
|
|
--replace "pydash~=4.7.6" "pydash"
|
|
'';
|
|
|
|
disabledTestPaths = [
|
|
# Tests are failing
|
|
"tests/test_boto3_client.py"
|
|
"tests/config/test_pluggy.py"
|
|
];
|
|
|
|
disabledTests = [
|
|
# Assertion fails
|
|
"test_multiple_resources_with_wildcard_resources_are_detected"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"cfripper"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Tool for analysing CloudFormation templates";
|
|
homepage = "https://github.com/Skyscanner/cfripper";
|
|
license = with licenses; [ asl20 ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|