python310Packages.aiobotocore 0 -> 1 attrpath: python310Packages.aiobotocore 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] this derivation will be built: /nix/store/n1hsa12vm65m9bvakcg7gcdila8y8cj7-packages.json.drv building '/nix/store/n1hsa12vm65m9bvakcg7gcdila8y8cj7-packages.json.drv'... Going to be running update for following packages: - python3.10-aiobotocore-2.5.2 Press Enter key to continue... Running update for: - python3.10-aiobotocore-2.5.2: UPDATING ... - python3.10-aiobotocore-2.5.2: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/aiobotocore/default.nix b/pkgs/development/python-modules/aiobotocore/default.nix index 6f7ef895c373..9de5593a2562 100644 --- a/pkgs/development/python-modules/aiobotocore/default.nix +++ b/pkgs/development/python-modules/aiobotocore/default.nix @@ -14,7 +14,7 @@ buildPythonPackage rec { pname = "aiobotocore"; - version = "2.5.2"; + version = "2.6.0"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -23,7 +23,7 @@ buildPythonPackage rec { owner = "aio-libs"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-twIo5qJht7oZye5lbiPwLFa/5dCwgCm+OkwuCuWU0cU="; + hash = "sha256-e8FBUG08yWNL9B51Uv4ftYx1C0kcdoweOreUtvvvTAk="; }; # Relax version constraints: aiobotocore works with newer botocore versions No auto update branch exists Old version 2.5.2" not present in staging derivation file with contents: { lib , aiohttp , aioitertools , botocore , buildPythonPackage , dill , fetchFromGitHub , moto , pytest-asyncio , pytestCheckHook , pythonOlder , wrapt }: buildPythonPackage rec { pname = "aiobotocore"; version = "2.6.0"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "aio-libs"; repo = pname; rev = "refs/tags/${version}"; hash = "sha256-e8FBUG08yWNL9B51Uv4ftYx1C0kcdoweOreUtvvvTAk="; }; # Relax version constraints: aiobotocore works with newer botocore versions # the pinning used to match some `extras_require` we're not using. postPatch = '' sed -i "s/'botocore>=.*'/'botocore'/" setup.py ''; propagatedBuildInputs = [ aiohttp aioitertools botocore wrapt ]; nativeCheckInputs = [ dill moto pytest-asyncio pytestCheckHook ]; pythonImportsCheck = [ "aiobotocore" ]; disabledTestPaths = [ # Tests require network access "tests/boto_tests/test_signers.py" "tests/python3.8/" "tests/test_basic_s3.py" "tests/test_batch.py" "tests/test_dynamodb.py" "tests/test_ec2.py" "tests/test_eventstreams.py" "tests/test_lambda.py" "tests/test_monitor.py" "tests/test_mturk.py" "tests/test_patches.py" "tests/test_sns.py" "tests/test_sqs.py" "tests/test_version.py" "tests/test_waiter.py" ]; disabledTests = [ "test_get_credential" "test_load_sso_credentials_without_cache" "test_load_sso_credentials" "test_required_config_not_set" "test_sso_cred_fetcher_raises_helpful_message_on_unauthorized_exception" "test_sso_credential_fetcher_can_fetch_credentials" ]; meta = with lib; { description = "Python client for amazon services"; homepage = "https://github.com/aio-libs/aiobotocore"; changelog = "https://github.com/aio-libs/aiobotocore/releases/tag/${version}"; license = licenses.asl20; maintainers = with maintainers; [ teh ]; }; }