awslogs: relax jmespath constraint

- add pythonImportsCheck
This commit is contained in:
Fabian Affolter 2022-04-25 08:40:26 +02:00
parent a5774e76bb
commit 5af0d861aa

View file

@ -1,30 +1,51 @@
{ lib, fetchFromGitHub, python3Packages }: { lib
, fetchFromGitHub
, python3
}:
python3Packages.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
pname = "awslogs"; pname = "awslogs";
version = "0.14.0"; version = "0.14.0";
format = "setuptools";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "jorgebastida"; owner = "jorgebastida";
repo = "awslogs"; repo = pname;
rev = version; rev = version;
sha256 = "1gyry8b64psvmjcb2lb3yilpa7b17yllga06svls4hi69arvrd8f"; sha256 = "sha256-DrW8s0omQqLp1gaoR6k/YR11afRjUbGYrFtfYhby2b8=";
}; };
propagatedBuildInputs = with python3Packages; [ propagatedBuildInputs = with python3.pkgs; [
boto3 termcolor python-dateutil docutils setuptools jmespath boto3
termcolor
python-dateutil
docutils
setuptools
jmespath
]; ];
checkInputs = [ python3Packages.pytestCheckHook ]; checkInputs = with python3.pkgs; [
pytestCheckHook
];
postPatch = ''
substituteInPlace setup.py \
--replace "jmespath>=0.7.1,<1.0.0" "jmespath>=0.7.1"
'';
disabledTests = [ disabledTests = [
"test_main_get_query" "test_main_get_query"
"test_main_get_with_color" "test_main_get_with_color"
]; ];
pythonImportsCheck = [
"awslogs"
];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/jorgebastida/awslogs";
description = "AWS CloudWatch logs for Humans"; description = "AWS CloudWatch logs for Humans";
maintainers = with maintainers; [ dbrock ]; homepage = "https://github.com/jorgebastida/awslogs";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ dbrock ];
}; };
} }