pythonPackages.pytest-asyncio: enable only for python3

This commit is contained in:
Lancelot SIX 2017-05-02 22:10:58 +02:00
parent 78db95cd52
commit 8adb26319f
No known key found for this signature in database
GPG Key ID: 02E1542BA66FB047

View File

@ -1,9 +1,11 @@
{ stdenv, buildPythonPackage, fetchurl, pytest }:
{ stdenv, buildPythonPackage, fetchurl, pytest, isPy3k }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "pytest-asyncio";
version = "0.5.0";
disabled = !isPy3k;
src = fetchurl {
url = "mirror://pypi/p/${pname}/${name}.tar.gz";
sha256 = "03sxq8fglr4lw4y6wqlbli9ypr65fxzx6hlpn5wpccx8v5472iff";