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,10 +16,13 @@ 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";
|
||||||
homepage = https://github.com/kgrandis/nose-exclude;
|
homepage = https://github.com/kgrandis/nose-exclude;
|
||||||
maintainers = with lib.maintainers; [ fridh ];
|
maintainers = with lib.maintainers; [ fridh ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue