summary refs log tree commit diff
path: root/pkgs/development/python-modules/simplejson
diff options
context:
space:
mode:
authorJames Kent <jameschristopherkent@gmail.com>2017-06-05 08:31:26 +0100
committerJames Kent <jameschristopherkent@gmail.com>2017-06-05 08:31:26 +0100
commit6d47735c385467c9b23324cd64090b82e89f1ce8 (patch)
tree6197da13253b1c87cf98a781aa30d5709851a967 /pkgs/development/python-modules/simplejson
parent2c84e814e8261e2910595e40ee4e3e6b74ed5302 (diff)
downloadnixlib-6d47735c385467c9b23324cd64090b82e89f1ce8.tar
nixlib-6d47735c385467c9b23324cd64090b82e89f1ce8.tar.gz
nixlib-6d47735c385467c9b23324cd64090b82e89f1ce8.tar.bz2
nixlib-6d47735c385467c9b23324cd64090b82e89f1ce8.tar.lz
nixlib-6d47735c385467c9b23324cd64090b82e89f1ce8.tar.xz
nixlib-6d47735c385467c9b23324cd64090b82e89f1ce8.tar.zst
nixlib-6d47735c385467c9b23324cd64090b82e89f1ce8.zip
Disable simplejson test on Darwin otherwise build fails.
Diffstat (limited to 'pkgs/development/python-modules/simplejson')
-rw-r--r--pkgs/development/python-modules/simplejson/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/simplejson/default.nix b/pkgs/development/python-modules/simplejson/default.nix
index 983d17655215..4deac80fb06d 100644
--- a/pkgs/development/python-modules/simplejson/default.nix
+++ b/pkgs/development/python-modules/simplejson/default.nix
@@ -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;
   };
-}
\ No newline at end of file
+}