python3Packages.mypy-boto3-builder: 4.14.1 -> 4.22.1

This commit is contained in:
Fabian Affolter 2021-08-23 08:36:50 +02:00
parent f329e04bfa
commit aef78fae43

View File

@ -3,10 +3,11 @@
, boto3
, buildPythonPackage
, fetchFromGitHub
, isort
, jinja2
, md-toc
, isort
, mdformat
, poetry-core
, pyparsing
, pytestCheckHook
, pythonOlder
@ -14,16 +15,22 @@
buildPythonPackage rec {
pname = "mypy-boto3-builder";
version = "4.14.1";
disabled = pythonOlder "3.6";
version = "4.22.1";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "vemel";
repo = "mypy_boto3_builder";
rev = version;
sha256 = "sha256-y55bPi70ldd528Olr2atXHm5JHiLNBZ396D9qwbBmkc=";
sha256 = "0xljddjhq7b0344mpiymjrjym40xgda1vmwygjk1gikakhr61hh4";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
black
boto3
@ -38,6 +45,11 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTests = [
# Should be fixed with 5.x
"test_get_types"
];
pythonImportsCheck = [ "mypy_boto3_builder" ];
meta = with lib; {