python310Packages.pytest-asyncio 0 -> 1 attrpath: python310Packages.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 [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/z23g4mx9hsx15x8klwjv5kcjjqa3gkg7-packages.json.drv building '/nix/store/z23g4mx9hsx15x8klwjv5kcjjqa3gkg7-packages.json.drv'... Going to be running update for following packages: - python3.10-pytest-asyncio-0.20.3 Press Enter key to continue... Running update for: - python3.10-pytest-asyncio-0.20.3: UPDATING ... - python3.10-pytest-asyncio-0.20.3: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/pytest-asyncio/default.nix b/pkgs/development/python-modules/pytest-asyncio/default.nix index e13f67ec83b5..cf2e9c8b6707 100644 --- a/pkgs/development/python-modules/pytest-asyncio/default.nix +++ b/pkgs/development/python-modules/pytest-asyncio/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "pytest-asyncio"; - version = "0.20.3"; + version = "0.21.1"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -21,7 +21,7 @@ buildPythonPackage rec { owner = "pytest-dev"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-oq28wJ/Tq4yuQ/98tdzYKDyatpliS0Xcbc6T46ZTP7I="; + hash = "sha256-Wpo8MpCPGiXrckT2x5/yBYtGlzso/L2urG7yGc7SPkA="; }; outputs = [ No auto update branch exists Old version 0.20.3" not present in staging derivation file with contents: { lib , buildPythonPackage , callPackage , fetchFromGitHub , flaky , hypothesis , pytest , pytestCheckHook , pythonOlder , setuptools-scm }: buildPythonPackage rec { pname = "pytest-asyncio"; version = "0.21.1"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "pytest-dev"; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-Wpo8MpCPGiXrckT2x5/yBYtGlzso/L2urG7yGc7SPkA="; }; outputs = [ "out" "testout" ]; SETUPTOOLS_SCM_PRETEND_VERSION = version; 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 ]; }; }