mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 01:33:10 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
70 lines
1.3 KiB
Nix
70 lines
1.3 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, python3
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "cfripper";
|
|
version = "1.16.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Skyscanner";
|
|
repo = "cfripper";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-2yOATSCXqv28OE+GdF9F9Dhi3AIkxSe/YJ9ILLnd/nw=";
|
|
};
|
|
|
|
pythonRelaxDeps = [
|
|
"pluggy"
|
|
];
|
|
|
|
build-system = with python3.pkgs; [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
nativeBuildInputs = with python3.pkgs; [
|
|
];
|
|
|
|
dependencies = with python3.pkgs; [
|
|
boto3
|
|
cfn-flip
|
|
click
|
|
pluggy
|
|
pycfmodel
|
|
pydash
|
|
pyyaml
|
|
setuptools
|
|
];
|
|
|
|
nativeCheckInputs = with python3.pkgs; [
|
|
moto
|
|
pytestCheckHook
|
|
];
|
|
|
|
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";
|
|
changelog = "https://github.com/Skyscanner/cfripper/releases/tag/v${version}";
|
|
license = with licenses; [ asl20 ];
|
|
maintainers = with maintainers; [ fab ];
|
|
mainProgram = "cfripper";
|
|
};
|
|
}
|