pythonPackages.ssdp: disable python2 tests
This commit is contained in:
parent
a715aa7073
commit
63e7354815
1 changed files with 4 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue