Merge pull request #161641 from r-ryantm/auto-update/python3.10-aws-lambda-builders

python310Packages.aws-lambda-builders: 1.12.0 -> 1.13.0
This commit is contained in:
Fabian Affolter
2022-02-25 11:43:11 +01:00
committed by GitHub
@@ -2,32 +2,29 @@
, buildPythonPackage
, fetchFromGitHub
, six
, pathlib
, pytest
, mock
, parameterized
, isPy27
, isPy35
, pythonOlder
}:
buildPythonPackage rec {
pname = "aws-lambda-builders";
version = "1.12.0";
version = "1.13.0";
format = "setuptools";
disabled = pythonOlder "3.7";
# No tests available in PyPI tarball
src = fetchFromGitHub {
owner = "awslabs";
repo = "aws-lambda-builders";
rev = "v${version}";
sha256 = "sha256-3Of3E32+Txe2844pl0sWxj46EgaTG2aEfbAELlxIT/E=";
sha256 = "sha256-t04g65TPeOYgEQw6kPJrlJN1ssQrsN9kl7g69J4pPwo=";
};
# Package is not compatible with Python 3.5
disabled = isPy35;
propagatedBuildInputs = [
six
] ++ lib.optionals isPy27 [ pathlib ];
];
checkInputs = [
pytest