Merge pull request #26405 from KentJames/master

Disable simplejson test on Darwin otherwise build fails.

authored by

Frederik Rietdijk and committed by
GitHub
721ab540 677f194a

+3 -1
+3 -1
pkgs/development/python-modules/simplejson/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 + , stdenv 4 5 }: 5 6 6 7 buildPythonPackage rec { 7 8 pname = "simplejson"; 8 9 version = "3.10.0"; 9 10 name = "${pname}-${version}"; 11 + doCheck = !stdenv.isDarwin; 10 12 11 13 src = fetchPypi { 12 14 inherit pname version; ··· 25 27 homepage = http://code.google.com/p/simplejson/; 26 28 license = lib.licenses.mit; 27 29 }; 28 - } 30 + }