Merge pull request #68813 from jonringer/fix-ssdp

pythonPackages.ssdp: disable python2 tests
This commit is contained in:
Mario Rodas 2019-09-15 11:20:35 -05:00 committed by GitHub
commit 3bb87649f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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;