summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest/2_9.nix
blob: 3ca7120dd92c09f831d73f679d30954c9f437f76 (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, pkgs, buildPythonPackage, fetchurl, isPy26, argparse, py, selenium }:
buildPythonPackage rec {
  name = "pytest-2.9.2";

  src = fetchurl {
    url = "mirror://pypi/p/pytest/${name}.tar.gz";
    sha256 = "1n6igbc1b138wx1q5gca4pqw1j6nsyicfxds5n0b5989kaxqmh8j";
  };

  # Disabled temporarily because of Hydra issue with namespaces
  doCheck = false;

  preCheck = ''
    # don't test bash builtins
    rm testing/test_argcomplete.py
  '';

  propagatedBuildInputs = [ py ]
    ++ (stdenv.lib.optional isPy26 argparse)
    ++ stdenv.lib.optional
      pkgs.config.pythonPackages.pytest.selenium or false
      selenium;

  meta = with stdenv.lib; {
    maintainers = with maintainers; [ domenkozar lovek323 madjar ];
    platforms = platforms.unix;
  };
}