14 buildPythonPackage rec {
15 pname = "aws-lambda-builders";
19 disabled = pythonOlder "3.8";
21 src = fetchFromGitHub {
23 repo = "aws-lambda-builders";
24 rev = "refs/tags/v${version}";
25 hash = "sha256-g1f0OL41lvs8OLyLcBk6XJk9wZO/oWluUj5sUcXlUIE=";
29 substituteInPlace setup.py \
30 --replace-fail "version=read_version()," 'version="${version}",'
50 # CLI don't work in the sandbox
51 "test_run_hello_workflow"
52 # Don't tests integrations
53 "TestCustomMakeWorkflow"
59 "TestNodejsNpmWorkflow"
60 "TestNodejsNpmWorkflowWithEsbuild"
62 "TestPythonPipWorkflow"
66 # Tests which are passing locally but not on Hydra
67 "test_copy_dependencies_action_1_multiple_files"
68 "test_move_dependencies_action_1_multiple_files"
72 # Dotnet binary needed
73 "tests/integration/workflows/dotnet_clipackage/test_dotnet.py"
76 pythonImportsCheck = [
81 description = "Tool to compile, build and package AWS Lambda functions";
82 mainProgram = "lambda-builders";
83 homepage = "https://github.com/awslabs/aws-lambda-builders";
84 changelog = "https://github.com/aws/aws-lambda-builders/releases/tag/v${version}";
86 Lambda Builders is a Python library to compile, build and package
87 AWS Lambda functions for several runtimes & frameworks.
89 license = licenses.asl20;
90 maintainers = with maintainers; [ dhkl ];