python311Packages.anyio 0 -> 1 attrpath: python311Packages.anyio 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/b1prgxb4vfvq89ji8l9b374hgrzr9zfw-packages.json.drv building '/nix/store/b1prgxb4vfvq89ji8l9b374hgrzr9zfw-packages.json.drv'... Going to be running update for following packages: - python3.11-anyio-4.2.0 Press Enter key to continue... Running update for: - python3.11-anyio-4.2.0: UPDATING ... - python3.11-anyio-4.2.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/anyio/default.nix b/pkgs/development/python-modules/anyio/default.nix index f8d992bed39b..c5e6d20acb6b 100644 --- a/pkgs/development/python-modules/anyio/default.nix +++ b/pkgs/development/python-modules/anyio/default.nix @@ -29,7 +29,7 @@ buildPythonPackage rec { pname = "anyio"; - version = "4.2.0"; + version = "4.3.0"; pyproject = true; disabled = pythonOlder "3.8"; @@ -38,7 +38,7 @@ buildPythonPackage rec { owner = "agronholm"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-9BxzdeQ5Yh4FDXGNVx9kiy7/fBmn8esvZkrK4wW4oGA="; + hash = "sha256-y58DQiTD0ZKaBNf0cA3MFE+7F68Svrl+Idz6BZY7HWQ="; }; nativeBuildInputs = [ No auto update branch exists Old version 4.2.0" not present in staging derivation file with contents: { stdenv , lib , buildPythonPackage , fetchFromGitHub , pythonOlder # build-system , setuptools , setuptools-scm # dependencies , exceptiongroup , idna , sniffio , typing-extensions # optionals , trio # tests , hypothesis , psutil , pytest-mock , pytest-xdist , pytestCheckHook , trustme , uvloop }: buildPythonPackage rec { pname = "anyio"; version = "4.3.0"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "agronholm"; repo = pname; rev = "refs/tags/${version}"; hash = "sha256-y58DQiTD0ZKaBNf0cA3MFE+7F68Svrl+Idz6BZY7HWQ="; }; nativeBuildInputs = [ setuptools setuptools-scm ]; propagatedBuildInputs = [ idna sniffio ] ++ lib.optionals (pythonOlder "3.11") [ exceptiongroup typing-extensions ]; passthru.optional-dependencies = { trio = [ trio ]; }; # trustme uses pyopenssl doCheck = !(stdenv.isDarwin && stdenv.isAarch64); nativeCheckInputs = [ exceptiongroup hypothesis psutil pytest-mock pytest-xdist pytestCheckHook trustme uvloop ] ++ passthru.optional-dependencies.trio; pytestFlagsArray = [ "-W" "ignore::trio.TrioDeprecationWarning" "-m" "'not network'" ]; disabledTests = lib.optionals (stdenv.isx86_64 && stdenv.isDarwin) [ # PermissionError: [Errno 1] Operation not permitted: '/dev/console' "test_is_block_device" ]; disabledTestPaths = [ # lots of DNS lookups "tests/test_sockets.py" ]; __darwinAllowLocalNetworking = true; pythonImportsCheck = [ "anyio" ]; meta = with lib; { changelog = "https://github.com/agronholm/anyio/blob/${src.rev}/docs/versionhistory.rst"; description = "High level compatibility layer for multiple asynchronous event loop implementations on Python"; homepage = "https://github.com/agronholm/anyio"; license = licenses.mit; maintainers = with maintainers; [ hexa ]; }; }