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