python3Packages.nose-exclude: disable tests for darwin
"OSError: AF_UNIX path too long"
This commit is contained in:
parent
288f4f0382
commit
a71ae5ba52
@ -1,4 +1,5 @@
|
|||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, nose
|
, nose
|
||||||
@ -15,6 +16,9 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
propagatedBuildInputs = [ nose ];
|
propagatedBuildInputs = [ nose ];
|
||||||
|
|
||||||
|
# "OSError: AF_UNIX path too long" for darwin
|
||||||
|
doCheck = !stdenv.isDarwin;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
license = lib.licenses.lgpl21;
|
license = lib.licenses.lgpl21;
|
||||||
description = "Exclude specific directories from nosetests runs";
|
description = "Exclude specific directories from nosetests runs";
|
||||||
|
Loading…
Reference in New Issue
Block a user