13 buildPythonPackage rec {
14 pname = "aws-lambda-builders";
17 # No tests available in PyPI tarball
18 src = fetchFromGitHub {
20 repo = "aws-lambda-builders";
22 sha256 = "1r4939m5k1nj6l9bv972z4fkmkl0z5f5r29bq7588yk113kkqr0c";
25 # Package is not compatible with Python 3.5
28 propagatedBuildInputs = [
30 ] ++ lib.optionals isPy27 [ pathlib ];
39 export PATH=$out/bin:$PATH
40 pytest tests/functional -k 'not can_invoke_pip'
44 homepage = "https://github.com/awslabs/aws-lambda-builders";
45 description = "A tool to compile, build and package AWS Lambda functions";
47 Lambda Builders is a Python library to compile, build and package
48 AWS Lambda functions for several runtimes & frameworks.
50 license = licenses.asl20;
51 maintainers = with maintainers; [ dhkl ];