python.pkgs.simplejson: disable tests with python 3

This commit is contained in:
Frederik Rietdijk 2018-11-04 15:23:56 +01:00
parent ad1d37f211
commit bc3346cbab

View File

@ -2,6 +2,8 @@
, buildPythonPackage
, fetchPypi
, stdenv
, isPy3k
, pytest
}:
buildPythonPackage rec {
@ -14,6 +16,14 @@ buildPythonPackage rec {
sha256 = "b1f329139ba647a9548aa05fb95d046b4a677643070dc2afc05fa2e975d09ca5";
};
# Package does not need pytest, but its a bit easier debugging.
checkInputs = [ pytest ];
# Ignore warnings because test does not expect them in stderr
# See https://github.com/simplejson/simplejson/issues/241
checkPhase = ''
PYTHONWARNINGS="ignore" pytest simplejson/tests
'';
meta = {
description = "A simple, fast, extensible JSON encoder/decoder for Python";
longDescription = ''