summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-helpers-namespace/default.nix
blob: 41263ce692b3fbd5c4ac1945c10a596fa893399b (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
34
35
{ buildPythonPackage
, fetchFromGitHub
, pytest
, lib, stdenv
}:

buildPythonPackage rec {
  pname = "pytest-helpers-namespace";
  version = "2019.1.8";

  src = fetchFromGitHub {
    owner = "saltstack";
    repo = pname;
    rev = "v${version}";
    sha256 = "0z9f25d2wpf3lnqzmmnrlvl5b1f7kqwjjf4nzs9x2bpf91s5zny1";
  };

  buildInputs = [ pytest ];

  checkInputs = [ pytest ];

  checkPhase = ''
    pytest
  '';

  # The tests fail with newest pytest. They passed with pytest_3, which no longer exists
  doCheck = false;

  meta = with lib; {
    homepage = "https://github.com/saltstack/pytest-helpers-namespace";
    description = "PyTest Helpers Namespace";
    license = licenses.asl20;
    maintainers = [ maintainers.kiwi ];
  };
}