mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
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
|
||||
, 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;
|
||||
|
|
Loading…
Reference in a new issue