pythonPackages.ssdp: disable python2 tests

This commit is contained in:
Jonathan Ringer 2019-09-14 11:53:02 -07:00
parent a715aa7073
commit 63e7354815

View file

@ -1,6 +1,7 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy27
, pbr
, pytest
}:
@ -16,7 +17,9 @@ buildPythonPackage rec {
buildInputs = [ pbr ];
checkInputs = [ pytest ];
propagatedBuildInputs = [ ];
# test suite uses new async primitives
doCheck = !isPy27;
meta = with stdenv.lib; {
homepage = https://github.com/codingjoe/ssdp;