15 buildPythonPackage rec {
16 pname = "aws-lambda-builders";
20 disabled = pythonOlder "3.8";
22 src = fetchFromGitHub {
24 repo = "aws-lambda-builders";
26 hash = "sha256-4OiXri1u4co1cuDm7bLyw8XfMg2S3sKrkPWF2tD8zg8=";
30 substituteInPlace setup.py \
31 --replace-fail "version=read_version()," 'version="${version}",'
34 build-system = [ setuptools ];
36 dependencies = [ six ];
47 # CLI don't work in the sandbox
48 "test_run_hello_workflow"
49 # Don't tests integrations
50 "TestCustomMakeWorkflow"
56 "TestNodejsNpmWorkflow"
57 "TestNodejsNpmWorkflowWithEsbuild"
59 "TestPythonPipWorkflow"
63 # Tests which are passing locally but not on Hydra
64 "test_copy_dependencies_action_1_multiple_files"
65 "test_move_dependencies_action_1_multiple_files"
69 # Dotnet binary needed
70 "tests/integration/workflows/dotnet_clipackage/test_dotnet.py"
73 pythonImportsCheck = [ "aws_lambda_builders" ];
76 description = "Tool to compile, build and package AWS Lambda functions";
77 mainProgram = "lambda-builders";
78 homepage = "https://github.com/awslabs/aws-lambda-builders";
79 changelog = "https://github.com/aws/aws-lambda-builders/releases/tag/v${version}";
81 Lambda Builders is a Python library to compile, build and package
82 AWS Lambda functions for several runtimes & frameworks.
84 license = licenses.asl20;
85 maintainers = with maintainers; [ dhkl ];