about summary refs log tree commit diff
path: root/pkgs/development/python-modules/nose-exclude/default.nix
blob: 38d6cd3bb78ea925d2f8d7c7a45c5bce516cee24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv
, lib
, buildPythonPackage
, fetchPypi
, nose
}:

buildPythonPackage rec {
  pname = "nose-exclude";
  version = "0.5.0";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "f78fa8b41eeb815f0486414f710f1eea0949e346cfb11d59ba6295ed69e84304";
  };

  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";
  };
}