python311Packages.gql 0 -> 1 attrpath: python311Packages.gql Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] Going to be running update for following packages: - python3.11-gql-3.4.1 Press Enter key to continue... Running update for: - python3.11-gql-3.4.1: UPDATING ... - python3.11-gql-3.4.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/gql/default.nix b/pkgs/development/python-modules/gql/default.nix index 5553ec40b24e..990f2c0043c6 100644 --- a/pkgs/development/python-modules/gql/default.nix +++ b/pkgs/development/python-modules/gql/default.nix @@ -22,7 +22,7 @@ buildPythonPackage rec { pname = "gql"; - version = "3.4.1"; + version = "3.5.0"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -31,7 +31,7 @@ buildPythonPackage rec { owner = "graphql-python"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-/uPaRju2AJCjMCfA29IKQ4Hu71RBu/Yz8jHwk9EE1Eg="; + hash = "sha256-jm0X+X8gQyQYn03gT14bdr79+Wd5KL9ryvrU/0VUtEU="; }; postPatch = '' No auto update branch exists Old version 3.4.1" not present in staging derivation file with contents: { lib , aiofiles , aiohttp , anyio , backoff , botocore , buildPythonPackage , fetchFromGitHub , graphql-core , httpx , mock , parse , pytest-asyncio , pytest-console-scripts , pytestCheckHook , pythonOlder , requests , requests-toolbelt , setuptools , urllib3 , vcrpy , websockets , yarl }: buildPythonPackage rec { pname = "gql"; version = "3.5.0"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "graphql-python"; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-jm0X+X8gQyQYn03gT14bdr79+Wd5KL9ryvrU/0VUtEU="; }; postPatch = '' substituteInPlace setup.py --replace \ "websockets>=10,<11;python_version>'3.6'" \ "websockets>=10,<12;python_version>'3.6'" ''; build-system = [ setuptools ]; dependencies = [ anyio backoff graphql-core yarl ]; nativeCheckInputs = [ aiofiles mock parse pytest-asyncio pytest-console-scripts pytestCheckHook vcrpy ] ++ optional-dependencies.all; optional-dependencies = { all = [ aiohttp botocore httpx requests requests-toolbelt urllib3 websockets ]; aiohttp = [ aiohttp ]; httpx = [ httpx ]; requests = [ requests requests-toolbelt urllib3 ]; websockets = [ websockets ]; botocore = [ botocore ]; }; preCheck = '' export PATH=$out/bin:$PATH ''; pytestFlagsArray = [ "--asyncio-mode=auto" ]; disabledTests = [ # Tests requires network access "test_execute_result_error" "test_http_transport" ]; disabledTestPaths = [ # Exclude linter tests "gql-checker/tests/test_flake8_linter.py" "gql-checker/tests/test_pylama_linter.py" # Tests require network access "tests/custom_scalars/test_money.py" "tests/test_aiohttp.py" "tests/test_appsync_http.py" "tests/test_appsync_websockets.py" "tests/test_async_client_validation.py" "tests/test_graphqlws_exceptions.py" "tests/test_graphqlws_subscription.py" "tests/test_phoenix_channel_exceptions.py" "tests/test_phoenix_channel_exceptions.py" "tests/test_phoenix_channel_query.py" "tests/test_phoenix_channel_subscription.py" "tests/test_requests.py" "tests/test_websocket_exceptions.py" "tests/test_websocket_query.py" "tests/test_websocket_subscription.py" ]; pythonImportsCheck = [ "gql" ]; meta = with lib; { description = "GraphQL client in Python"; mainProgram = "gql-cli"; homepage = "https://github.com/graphql-python/gql"; changelog = "https://github.com/graphql-python/gql/releases/tag/v${version}"; license = with licenses; [ mit ]; maintainers = with maintainers; [ fab ]; }; }