lol
0
fork

Configure Feed

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

python3Packages.pytest-asyncio: 0.14.0 -> 0.15.1

+2 -2
+2 -2
pkgs/development/python-modules/pytest-asyncio/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi, pytest, isPy3k, isPy35, async_generator }: 2 2 buildPythonPackage rec { 3 3 pname = "pytest-asyncio"; 4 - version = "0.14.0"; 4 + version = "0.15.1"; 5 5 6 6 disabled = !isPy3k; 7 7 8 8 src = fetchPypi { 9 9 inherit pname version; 10 - sha256 = "9882c0c6b24429449f5f969a5158b528f39bde47dc32e85b9f0403965017e700"; 10 + sha256 = "2564ceb9612bbd560d19ca4b41347b54e7835c2f792c504f698e05395ed63f6f"; 11 11 }; 12 12 13 13 buildInputs = [ pytest ]