nixpkgs/pkgs/by-name/cf/cfripper/package.nix

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

70 lines
1.3 KiB
Nix
Raw Normal View History

2022-01-24 21:18:07 +00:00
{ lib
, fetchFromGitHub
, python3
}:
python3.pkgs.buildPythonApplication rec {
2022-01-24 21:18:07 +00:00
pname = "cfripper";
2024-07-24 09:38:19 +00:00
version = "1.16.0";
pyproject = true;
2022-01-24 21:18:07 +00:00
src = fetchFromGitHub {
owner = "Skyscanner";
repo = "cfripper";
rev = "refs/tags/v${version}";
2024-07-24 09:38:19 +00:00
hash = "sha256-2yOATSCXqv28OE+GdF9F9Dhi3AIkxSe/YJ9ILLnd/nw=";
2022-01-24 21:18:07 +00:00
};
pythonRelaxDeps = [
"pluggy"
];
build-system = with python3.pkgs; [
setuptools
setuptools-scm
];
nativeBuildInputs = with python3.pkgs; [
];
dependencies = with python3.pkgs; [
2022-01-24 21:18:07 +00:00
boto3
cfn-flip
click
pluggy
pycfmodel
pydash
pyyaml
setuptools
];
nativeCheckInputs = with python3.pkgs; [
2022-01-24 21:18:07 +00:00
moto
pytestCheckHook
];
disabledTestPaths = [
# Tests are failing
"tests/test_boto3_client.py"
"tests/config/test_pluggy.py"
];
2023-07-08 13:57:21 +00:00
disabledTests = [
# Assertion fails
"test_multiple_resources_with_wildcard_resources_are_detected"
];
2022-01-24 21:18:07 +00:00
pythonImportsCheck = [
"cfripper"
];
meta = with lib; {
description = "Tool for analysing CloudFormation templates";
homepage = "https://github.com/Skyscanner/cfripper";
changelog = "https://github.com/Skyscanner/cfripper/releases/tag/v${version}";
2022-01-24 21:18:07 +00:00
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
mainProgram = "cfripper";
2022-01-24 21:18:07 +00:00
};
}