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