mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 06:01:15 +00:00
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
|
||||
, fetchPypi
|
||||
, nose
|
||||
|
@ -15,10 +16,13 @@ buildPythonPackage rec {
|
|||
|
||||
propagatedBuildInputs = [ nose ];
|
||||
|
||||
# "OSError: AF_UNIX path too long" for darwin
|
||||
doCheck = !stdenv.isDarwin;
|
||||
|
||||
meta = {
|
||||
license = lib.licenses.lgpl21;
|
||||
description = "Exclude specific directories from nosetests runs";
|
||||
homepage = https://github.com/kgrandis/nose-exclude;
|
||||
maintainers = with lib.maintainers; [ fridh ];
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue