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