python311Packages.pytest-asyncio 0 -> 1 attrpath: python311Packages.pytest-asyncio 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-pytest-asyncio-0.21.1 Press Enter key to continue... Running update for: - python3.11-pytest-asyncio-0.21.1: UPDATING ... - python3.11-pytest-asyncio-0.21.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/pytest-asyncio/default.nix b/pkgs/development/python-modules/pytest-asyncio/default.nix index e373e5b1f654..df7034050946 100644 --- a/pkgs/development/python-modules/pytest-asyncio/default.nix +++ b/pkgs/development/python-modules/pytest-asyncio/default.nix @@ -9,7 +9,7 @@ buildPythonPackage rec { pname = "pytest-asyncio"; - version = "0.21.1"; # N.B.: when updating, tests bleak and aioesphomeapi tests + version = "0.23.5"; # N.B.: when updating, tests bleak and aioesphomeapi tests format = "pyproject"; disabled = pythonOlder "3.7"; @@ -18,7 +18,7 @@ buildPythonPackage rec { owner = "pytest-dev"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-Wpo8MpCPGiXrckT2x5/yBYtGlzso/L2urG7yGc7SPkA="; + hash = "sha256-sA9ix69oywr1D6ByAxzAFWrAPHJOuq4C8UMiMNkmGJs="; }; outputs = [ No auto update branch exists Old version 0.21.1" not present in staging derivation file with contents: { lib , buildPythonPackage , callPackage , fetchFromGitHub , pytest , pythonOlder , setuptools-scm }: buildPythonPackage rec { pname = "pytest-asyncio"; version = "0.23.5"; # N.B.: when updating, tests bleak and aioesphomeapi tests pyproject = true; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "pytest-dev"; repo = "pytest-asyncio"; rev = "refs/tags/v${version}"; hash = "sha256-sA9ix69oywr1D6ByAxzAFWrAPHJOuq4C8UMiMNkmGJs="; }; outputs = [ "out" "testout" ]; nativeBuildInputs = [ setuptools-scm ]; buildInputs = [ pytest ]; postInstall = '' mkdir $testout cp -R tests $testout/tests ''; doCheck = false; passthru.tests.pytest = callPackage ./tests.nix {}; pythonImportsCheck = [ "pytest_asyncio" ]; meta = with lib; { description = "Library for testing asyncio code with pytest"; homepage = "https://github.com/pytest-dev/pytest-asyncio"; changelog = "https://github.com/pytest-dev/pytest-asyncio/blob/v${version}/docs/source/reference/changelog.rst"; license = licenses.asl20; maintainers = with maintainers; [ dotlambda ]; }; }