12 buildPythonPackage rec {
13 pname = "serverlessrepo";
15 format = "setuptools";
17 disabled = pythonOlder "3.7";
20 inherit pname version;
21 sha256 = "671f48038123f121437b717ed51f253a55775590f00fbab6fbc6a01f8d05c017";
24 propagatedBuildInputs = [
36 substituteInPlace setup.py \
37 --replace "pyyaml~=5.1" "pyyaml" \
38 --replace "boto3~=1.9, >=1.9.56" "boto3"
45 pythonImportsCheck = [
50 homepage = "https://github.com/awslabs/aws-serverlessrepo-python";
51 description = "Helpers for working with the AWS Serverless Application Repository";
53 A Python library with convenience helpers for working with the
54 AWS Serverless Application Repository.
56 license = licenses.asl20;
57 maintainers = with maintainers; [ dhkl ];