python3Packages.gql: 3.1.0 -> 3.4.0

This commit is contained in:
Martin Weinelt 2022-09-16 19:12:53 +02:00 committed by Sandro Jäckel
parent ccdc6e1f4c
commit e944d4fe3d
No known key found for this signature in database
GPG Key ID: B1763F8651144063

View File

@ -1,6 +1,7 @@
{ lib
, aiofiles
, aiohttp
, backoff
, botocore
, buildPythonPackage
, fetchFromGitHub
@ -8,6 +9,7 @@
, mock
, parse
, pytest-asyncio
, pytest-console-scripts
, pytestCheckHook
, pythonOlder
, requests
@ -34,6 +36,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [
aiohttp
backoff
botocore
graphql-core
requests
@ -48,10 +51,19 @@ buildPythonPackage rec {
mock
parse
pytest-asyncio
pytest-console-scripts
pytestCheckHook
vcrpy
];
preCheck = ''
export PATH=$out/bin:$PATH
'';
pytestFlagsArray = [
"--asyncio-mode=legacy"
];
disabledTests = [
# Tests requires network access
"test_execute_result_error"