1
0
Fork 1
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:
Jonathan Ringer 2019-12-02 23:53:32 -08:00 committed by Jon
parent 288f4f0382
commit a71ae5ba52

View file

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