lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python310Packages.pytest-asyncio: 0.20.3 -> 0.21.0

Diff: https://github.com/pytest-dev/pytest-asyncio/compare/refs/tags/v0.20.3...v0.21.0

Changelog: https://github.com/pytest-dev/pytest-asyncio/blob/v0.21.0/docs/source/reference/changelog.rst

authored by

Robert Schütz and committed by
Martin Weinelt
1b43a8d6 2f118991

+5 -3
+3 -3
pkgs/development/python-modules/pytest-asyncio/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "pytest-asyncio"; 15 - version = "0.20.3"; 15 + version = "0.21.0"; 16 16 format = "pyproject"; 17 17 18 18 disabled = pythonOlder "3.7"; ··· 21 21 owner = "pytest-dev"; 22 22 repo = pname; 23 23 rev = "refs/tags/v${version}"; 24 - hash = "sha256-oq28wJ/Tq4yuQ/98tdzYKDyatpliS0Xcbc6T46ZTP7I="; 24 + hash = "sha256-GDfqMbwvI1PKltwKYtcQcW9XBRy8pBN0yc7z9oCVlA8="; 25 25 }; 26 26 27 27 outputs = [ ··· 54 54 meta = with lib; { 55 55 description = "Library for testing asyncio code with pytest"; 56 56 homepage = "https://github.com/pytest-dev/pytest-asyncio"; 57 - changelog = "https://github.com/pytest-dev/pytest-asyncio/blob/v${version}/CHANGELOG.rst"; 57 + changelog = "https://github.com/pytest-dev/pytest-asyncio/blob/v${version}/docs/source/reference/changelog.rst"; 58 58 license = licenses.asl20; 59 59 maintainers = with maintainers; [ dotlambda ]; 60 60 };
+2
pkgs/development/python-modules/pytest-asyncio/tests.nix
··· 10 10 pname = "pytest-asyncio-tests"; 11 11 inherit (pytest-asyncio) version; 12 12 13 + format = "other"; 14 + 13 15 src = pytest-asyncio.testout; 14 16 15 17 dontBuild = true;