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;