My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/aws-sam-translator/default.nix

63 lines
1.3 KiB

{ lib
, boto3
, buildPythonPackage
, fetchFromGitHub
, jsonschema
, mock
, parameterized
, pytestCheckHook
, pythonOlder
, pyyaml
, six
}:
buildPythonPackage rec {
pname = "aws-sam-translator";
version = "1.42.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "aws";
repo = "serverless-application-model";
rev = "v${version}";
sha256 = "sha256-pjcRsmxPL4lbgDopW+wKQRkRcqebLPTd95JTL8PiWtc=";
};
propagatedBuildInputs = [
boto3
jsonschema
six
];
postPatch = ''
substituteInPlace requirements/base.txt \
--replace "jsonschema~=3.2" "jsonschema>=3.2"
substituteInPlace pytest.ini \
--replace " --cov samtranslator --cov-report term-missing --cov-fail-under 95" ""
'';
checkInputs = [
mock
parameterized
pytestCheckHook
pyyaml
];
disabledTests = [
# AssertionError: Expected 7 errors, found 9:
"test_errors_13_error_definitionuri"
];
pythonImportsCheck = [
"samtranslator"
];
meta = with lib; {
description = "Python library to transform SAM templates into AWS CloudFormation templates";
homepage = "https://github.com/awslabs/serverless-application-model";
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}