python3Packages.nose-exclude: disable tests for darwin

"OSError: AF_UNIX path too long"
This commit is contained in:
Jonathan Ringer 2019-12-02 23:53:32 -08:00 committed by Jon
parent 288f4f0382
commit a71ae5ba52
1 changed files with 6 additions and 2 deletions

View File

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