aws-sam-cli: 0.5.0 -> 0.14.2

This commit is contained in:
David Leung 2019-04-08 18:16:39 +08:00
parent 0100fe974f
commit e5c07b8754
No known key found for this signature in database
GPG Key ID: 5CD75B8491383836
1 changed files with 49 additions and 13 deletions

View File

@ -2,43 +2,79 @@
, python , python
}: }:
with python.pkgs; let
py = python.override {
packageOverrides = self: super: {
click = super.click.overridePythonAttrs (oldAttrs: rec {
version = "6.7";
src = oldAttrs.src.override {
inherit version;
sha256 = "f15516df478d5a56180fbf80e68f206010e6d160fc39fa508b65e035fd75130b";
};
});
requests = super.requests.overridePythonAttrs (oldAttrs: rec {
version = "2.20.1";
src = oldAttrs.src.override {
inherit version;
sha256 = "ea881206e59f41dbd0bd445437d792e43906703fff75ca8ff43ccdb11f33f263";
};
});
idna = super.idna.overridePythonAttrs (oldAttrs: rec {
version = "2.7";
src = oldAttrs.src.override {
inherit version;
sha256 = "684a38a6f903c1d71d6d5fac066b58d7768af4de2b832e426ec79c30daa94a16";
};
});
six = super.six.overridePythonAttrs (oldAttrs: rec {
version = "1.11";
src = oldAttrs.src.override {
inherit version;
sha256 = "70e8a77beed4562e7f14fe23a786b54f6296e34344c23bc42f07b15018ff98e9";
};
});
};
};
in
with py.pkgs;
buildPythonApplication rec { buildPythonApplication rec {
pname = "aws-sam-cli"; pname = "aws-sam-cli";
version = "0.5.0"; version = "0.14.2";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "2acf9517f467950adb4939746658091e60cf60ee80093ffd0d3d821cb8a1f9fc"; sha256 = "b7f80838d57c1096a9a03ed703a91a8a5775a6ead33df8f31765ecf39b3a956f";
}; };
# Tests are not included in the PyPI package # Tests are not included in the PyPI package
doCheck = false; doCheck = false;
propagatedBuildInputs = [ propagatedBuildInputs = [
aws-lambda-builders
aws-sam-translator aws-sam-translator
boto3 chevron
click click
cookiecutter cookiecutter
dateparser dateparser
docker docker
enum34
flask flask
python-dateutil idna
pyyaml pathlib2
requests
serverlessrepo
six six
]; ];
postPatch = ''
substituteInPlace ./requirements/base.txt \
--replace 'aws-sam-translator==1.6.0' 'aws-sam-translator>=1.6.0';
'';
meta = with lib; { meta = with lib; {
homepage = https://github.com/awslabs/aws-sam-cli; homepage = https://github.com/awslabs/aws-sam-cli;
description = "CLI tool for local development and testing of Serverless applications"; description = "CLI tool for local development and testing of Serverless applications";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ andreabedini ]; maintainers = with maintainers; [ andreabedini dhkl ];
}; };
} }