nixpkgs-suyu/pkgs/development/tools/aws-sam-cli/default.nix
2020-01-23 16:36:22 -08:00

102 lines
2.7 KiB
Nix

{ lib
, python
}:
let
py = python.override {
packageOverrides = self: super: {
flask = super.flask.overridePythonAttrs (oldAttrs: rec {
version = "1.0.2";
src = oldAttrs.src.override {
inherit version;
sha256 = "0j6f4a9rpfh25k1gp7azqhnni4mb4fgy50jammgjgddw1l3w0w92";
};
});
jsonschema = super.jsonschema.overridePythonAttrs (oldAttrs: rec {
version = "3.1.1";
src = oldAttrs.src.override {
inherit version;
sha256 = "0grwi50v3vahvcijlw6g6q55yc5jyj0p1cmiq3rkycxnfr16i81g";
};
nativeBuildInputs = [ super.setuptools_scm ];
propagatedBuildInputs = with super; oldAttrs.propagatedBuildInputs ++ [ pyrsistent attrs importlib-metadata ];
doCheck = false;
});
cookiecutter = super.cookiecutter.overridePythonAttrs (oldAttrs: rec {
version = "1.6.0";
src = oldAttrs.src.override {
inherit version;
sha256 = "0glsvaz8igi2wy1hsnhm9fkn6560vdvdixzvkq6dn20z3hpaa5hk";
};
});
boto3 = super.boto3.overridePythonAttrs (oldAttrs: rec {
version = "1.10.50";
src = oldAttrs.src.override {
inherit version;
sha256 = "199nr61ivm4bychn3rxyzzyca5f8wlwags3s43rdv9yn048xa02w";
};
});
botocore = super.botocore.overridePythonAttrs (oldAttrs: rec {
version = "1.13.50";
src = oldAttrs.src.override {
inherit version;
sha256 = "1m3lbi13d9gcp6wfhv0pkwg8akasxlhv49y34ybj74ppgximqnkn";
};
});
};
};
in
with py.pkgs;
buildPythonApplication rec {
pname = "aws-sam-cli";
version = "0.40.0";
src = fetchPypi {
inherit pname version;
sha256 = "1vlg5fdkq5xr4v3a86gyxbbrx4rzdspbv62ki7q8yq8xdja1qz05";
};
# Tests are not included in the PyPI package
doCheck = false;
propagatedBuildInputs = [
aws-lambda-builders
aws-sam-translator
chevron
click
cookiecutter
dateparser
docker
flask
idna
pathlib2
requests
serverlessrepo
six
tomlkit
];
# fix over-restrictive version bounds
postPatch = ''
substituteInPlace requirements/base.txt \
--replace "requests==2.20.1" "requests==2.22.0" \
--replace "serverlessrepo==0.1.9" "serverlessrepo~=0.1.9" \
--replace "six~=1.11.0" "six~=1.12.0" \
--replace "python-dateutil~=2.6, <2.8.1" "python-dateutil~=2.6" \
--replace "PyYAML~=3.12" "PyYAML~=5.1"
'';
meta = with lib; {
homepage = https://github.com/awslabs/aws-sam-cli;
description = "CLI tool for local development and testing of Serverless applications";
license = licenses.asl20;
maintainers = with maintainers; [ andreabedini dhkl ];
};
}