aws-lambda-builders: 0.8.0 -> 0.9.0

This commit is contained in:
Jack Kelly 2020-07-04 20:41:03 +10:00
parent b2aa673d5a
commit 2fea6a2a64

View File

@ -2,22 +2,24 @@
, buildPythonPackage
, fetchFromGitHub
, six
, pathlib
, pytest
, mock
, parameterized
, isPy27
, isPy35
}:
buildPythonPackage rec {
pname = "aws-lambda-builders";
version = "0.8.0";
version = "0.9.0";
# No tests available in PyPI tarball
src = fetchFromGitHub {
owner = "awslabs";
repo = "aws-lambda-builders";
rev = "v${version}";
sha256 = "1akiv92cd7ciky0aay94lh9azr73jajn0x0x6ywaf3qm5c4hyvys";
sha256 = "0cgb0hwf4xg5dmm32wwlxqy7a77jw6gpnj7v8rq5948hsy2sfrcp";
};
# Package is not compatible with Python 3.5
@ -25,7 +27,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [
six
];
] ++ lib.optionals isPy27 [ pathlib ];
checkInputs = [
pytest