2022-06-16 17:23:12 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
2021-10-01 09:20:50 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchpatch
|
|
|
|
, isPy27
|
|
|
|
, pytestCheckHook
|
2024-01-25 14:12:00 +00:00
|
|
|
, autoconf271
|
2021-10-01 09:20:50 +00:00
|
|
|
, automake
|
|
|
|
, cmake
|
|
|
|
, gcc
|
|
|
|
, libtool
|
|
|
|
, perl
|
2024-01-13 08:15:51 +00:00
|
|
|
, setuptools
|
2021-10-01 09:20:50 +00:00
|
|
|
, simplejson
|
|
|
|
}:
|
2021-04-08 16:26:57 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "awslambdaric";
|
2024-04-21 15:54:59 +00:00
|
|
|
version = "2.0.10";
|
2024-01-13 08:15:51 +00:00
|
|
|
pyproject = true;
|
|
|
|
|
2021-04-08 16:26:57 +00:00
|
|
|
disabled = isPy27;
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "aws";
|
|
|
|
repo = "aws-lambda-python-runtime-interface-client";
|
2023-11-16 04:20:00 +00:00
|
|
|
rev = "refs/tags/${version}";
|
2024-04-21 15:54:59 +00:00
|
|
|
sha256 = "sha256-tvTN6gV73Qnbe4OBHtfxt4jXV32fMTPE4H79WIkgkxE=";
|
2021-04-08 16:26:57 +00:00
|
|
|
};
|
|
|
|
|
2021-10-01 09:20:50 +00:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
# https://github.com/aws/aws-lambda-python-runtime-interface-client/pull/58
|
|
|
|
url = "https://github.com/aws/aws-lambda-python-runtime-interface-client/commit/162c3c0051bb9daa92e4a2a4af7e90aea60ee405.patch";
|
|
|
|
sha256 = "09qqq5x6npc9jw2qbhzifqn5sqiby4smiin1aw30psmlp21fv7j8";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2021-08-08 23:34:03 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace requirements/base.txt \
|
|
|
|
--replace 'simplejson==3' 'simplejson~=3'
|
|
|
|
'';
|
|
|
|
|
2021-04-08 16:26:57 +00:00
|
|
|
propagatedBuildInputs = [ simplejson ];
|
|
|
|
|
2024-01-25 14:12:00 +00:00
|
|
|
nativeBuildInputs = [ autoconf271 automake cmake libtool perl setuptools ];
|
2021-04-08 16:26:57 +00:00
|
|
|
|
|
|
|
buildInputs = [ gcc ];
|
|
|
|
|
|
|
|
dontUseCmakeConfigure = true;
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
2021-04-08 16:26:57 +00:00
|
|
|
|
2022-07-18 16:21:45 +00:00
|
|
|
disabledTests = [
|
|
|
|
# Test fails with: Assertion error
|
|
|
|
"test_handle_event_request_fault_exception_logging_syntax_error"
|
|
|
|
];
|
|
|
|
|
2021-04-08 16:26:57 +00:00
|
|
|
pythonImportsCheck = [ "awslambdaric" "runtime_client" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
2022-06-16 17:23:12 +00:00
|
|
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
2021-04-08 16:26:57 +00:00
|
|
|
description = "AWS Lambda Runtime Interface Client for Python";
|
|
|
|
homepage = "https://github.com/aws/aws-lambda-python-runtime-interface-client";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ austinbutler ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|