python: pytest-asyncio: 0.12.0 -> 0.14.0

This commit is contained in:
Frederik Rietdijk 2020-08-16 19:31:12 +02:00
parent 5181547ae6
commit 08d943cb89

View File

@ -1,13 +1,13 @@
{ stdenv, buildPythonPackage, fetchPypi, pytest, isPy3k, isPy35, async_generator }: { stdenv, buildPythonPackage, fetchPypi, pytest, isPy3k, isPy35, async_generator }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pytest-asyncio"; pname = "pytest-asyncio";
version = "0.12.0"; version = "0.14.0";
disabled = !isPy3k; disabled = !isPy3k;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "1lpb1q297rly685yl23mni3mmv6vmyx3qsv5ccj1vh8bvkrx4ns7"; sha256 = "9882c0c6b24429449f5f969a5158b528f39bde47dc32e85b9f0403965017e700";
}; };
buildInputs = [ pytest ] buildInputs = [ pytest ]