about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/nose/default.nix
blob: 2805b7c2ea19fbb7c859fd33ba1912acf5877745 (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
29
30
31
32
33
{ lib, stdenv
, buildPythonPackage
, fetchPypi
, python
, coverage
}:

buildPythonPackage rec {
  version = "1.3.7";
  pname = "nose";

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

  propagatedBuildInputs = [ coverage ];

  doCheck = false;  # lot's of transient errors, too much hassle
  checkPhase = if python.is_py3k or false then ''
    ${python}/bin/${python.executable} setup.py build_tests
  '' else "" + ''
    rm functional_tests/test_multiprocessing/test_concurrent_shared.py* # see https://github.com/nose-devs/nose/commit/226bc671c73643887b36b8467b34ad485c2df062
    ${python}/bin/${python.executable} selftest.py
  '';

  meta = with lib; {
    description = "A unittest-based testing framework for python that makes writing and running tests easier";
    homepage = "http://readthedocs.org/docs/nose/";
    license = licenses.lgpl3;
  };

}