Disable simplejson test on Darwin otherwise build fails.

This commit is contained in:
James Kent 2017-06-05 08:31:26 +01:00
parent 2c84e814e8
commit 6d47735c38

View file

@ -1,12 +1,14 @@
{ lib
, buildPythonPackage
, fetchPypi
, stdenv
}:
buildPythonPackage rec {
pname = "simplejson";
version = "3.10.0";
name = "${pname}-${version}";
doCheck = !stdenv.isDarwin;
src = fetchPypi {
inherit pname version;
@ -25,4 +27,4 @@ buildPythonPackage rec {
homepage = http://code.google.com/p/simplejson/;
license = lib.licenses.mit;
};
}
}