5db7e33f1d
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
36 lines
991 B
Nix
36 lines
991 B
Nix
{ lib, buildPythonPackage, fetchFromGitHub, isPy27, pytestCheckHook, autoconf
|
|
, automake, cmake, gcc, libtool, perl, simplejson }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "awslambdaric";
|
|
version = "1.0.0";
|
|
disabled = isPy27;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aws";
|
|
repo = "aws-lambda-python-runtime-interface-client";
|
|
rev = "v${version}";
|
|
sha256 = "13v1lsp3lxbqknvlb3gvljjf3wyrx5jg8sf9yfiaj1sm8pb8pmrf";
|
|
};
|
|
|
|
propagatedBuildInputs = [ simplejson ];
|
|
|
|
nativeBuildInputs = [ autoconf automake cmake libtool perl ];
|
|
|
|
buildInputs = [ gcc ];
|
|
|
|
dontUseCmakeConfigure = true;
|
|
|
|
checkInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "awslambdaric" "runtime_client" ];
|
|
|
|
meta = with lib; {
|
|
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;
|
|
};
|
|
}
|