1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #26405 from KentJames/master

Disable simplejson test on Darwin otherwise build fails.
This commit is contained in:
Frederik Rietdijk 2017-06-05 19:02:04 +02:00 committed by GitHub
commit 721ab54072

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;
};
}
}