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