python310Packages.ariadne 0 -> 1 attrpath: python310Packages.ariadne 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.10-ariadne-0.20.1 Press Enter key to continue... Running update for: - python3.10-ariadne-0.20.1: UPDATING ... - python3.10-ariadne-0.20.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/ariadne/default.nix b/pkgs/development/python-modules/ariadne/default.nix index 0e0bf1140a64..ecfb0c32bc46 100644 --- a/pkgs/development/python-modules/ariadne/default.nix +++ b/pkgs/development/python-modules/ariadne/default.nix @@ -16,7 +16,7 @@ buildPythonPackage rec { pname = "ariadne"; - version = "0.20.1"; + version = "0.21.0"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -25,7 +25,7 @@ buildPythonPackage rec { owner = "mirumee"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-v3CaLMTo/zbNEoE3K+aWnFTCgLetcnN7vOU/sFqLq2k="; + hash = "sha256-T5J0xAF33PDkC8sDOzHADpQJxwdXwKary0y/jaUJ9Fk="; }; patches = [ ./remove-opentracing.patch No auto update branch exists Old version 0.20.1" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , hatchling , freezegun , graphql-core , pytest-asyncio , pytest-mock , pytestCheckHook , pythonOlder , snapshottest , starlette , typing-extensions , werkzeug }: buildPythonPackage rec { pname = "ariadne"; version = "0.21.0"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "mirumee"; repo = pname; rev = "refs/tags/${version}"; hash = "sha256-T5J0xAF33PDkC8sDOzHADpQJxwdXwKary0y/jaUJ9Fk="; }; patches = [ ./remove-opentracing.patch ]; nativeBuildInputs = [ hatchling ]; propagatedBuildInputs = [ graphql-core starlette typing-extensions ]; nativeCheckInputs = [ freezegun pytest-asyncio pytest-mock pytestCheckHook snapshottest werkzeug ]; pythonImportsCheck = [ "ariadne" ]; disabledTests = [ # TypeError: TestClient.request() got an unexpected keyword argument 'content' "test_attempt_parse_request_missing_content_type_raises_bad_request_error" "test_attempt_parse_non_json_request_raises_bad_request_error" "test_attempt_parse_non_json_request_body_raises_bad_request_error" # opentracing "test_query_is_executed_for_multipart_form_request_with_file" "test_query_is_executed_for_multipart_request_with_large_file_with_tracing" ]; disabledTestPaths = [ # missing graphql-sync-dataloader test dep "tests/test_dataloaders.py" "tests/wsgi/test_configuration.py" # both include opentracing module, which has been removed from nixpkgs "tests/tracing/test_opentracing.py" "tests/tracing/test_opentelemetry.py" ]; meta = with lib; { description = "Python library for implementing GraphQL servers using schema-first approach"; homepage = "https://ariadnegraphql.org"; changelog = "https://github.com/mirumee/ariadne/blob/${version}/CHANGELOG.md"; license = licenses.bsd3; maintainers = with maintainers; [ samuela ]; }; }