Disable test for setuptools on darwin, and add darwin to supported platforms for serf. This should make nodejs working on darwin again
This commit is contained in:
parent
4fbb9e293c
commit
ad8974fc53
@ -40,6 +40,6 @@ stdenv.mkDerivation {
|
||||
description = "HTTP client library based on APR";
|
||||
license = stdenv.lib.licenses.asl20 ;
|
||||
maintainers = [stdenv.lib.maintainers.raskin];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
||||
};
|
||||
}
|
||||
|
@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
|
||||
wrapPythonPrograms
|
||||
'';
|
||||
|
||||
doCheck = true;
|
||||
doCheck = stdenv.system != "x86_64-darwin";
|
||||
|
||||
checkPhase = ''
|
||||
${python}/bin/${python.executable} setup.py test
|
||||
|
Loading…
Reference in New Issue
Block a user