summary refs log tree commit diff
path: root/pkgs/development/python-modules/nose-pattern-exclude/default.nix
blob: 24d74b938afb694840bc6ec4c940e422424492a4 (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
{ stdenv, buildPythonPackage, fetchPypi, nose }:

buildPythonPackage rec {
  pname = "nose-pattern-exclude";
  version = "0.1.3";

  propagatedBuildInputs = [ nose ];

  src = fetchPypi {
    inherit pname version;
    sha256 = "0apzxx8lavsdlxlpaxqw1snx5p7q8v5dfbip6v32f9pj2vyain1i";
  };

  # There are no tests
  doCheck = false;

  meta = with stdenv.lib; {
    description = "Exclude specific files and directories from nosetests runs";
    homepage = https://github.com/jakubroztocil/nose-pattern-exclude;
    license = licenses.bsd3;
    maintainers = with maintainers; [ jluttine ];
  };
}