1{ stdenv
2, lib
3, buildPythonPackage
4, fetchPypi
5, nose
6}:
7
8buildPythonPackage rec {
9 pname = "nose-exclude";
10 version = "0.5.0";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "f78fa8b41eeb815f0486414f710f1eea0949e346cfb11d59ba6295ed69e84304";
15 };
16
17 propagatedBuildInputs = [ nose ];
18
19 # "OSError: AF_UNIX path too long" for darwin
20 doCheck = !stdenv.isDarwin;
21
22 meta = {
23 license = lib.licenses.lgpl21;
24 description = "Exclude specific directories from nosetests runs";
25 homepage = "https://github.com/kgrandis/nose-exclude";
26 maintainers = with lib.maintainers; [ fridh ];
27 };
28}