summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-relaxed/default.nix
blob: bd92577d5bac61f997f62c5bf9bf5af129558f57 (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
36
37
{ stdenv
, buildPythonPackage
, fetchPypi
, pytest
, six
, decorator
}:

buildPythonPackage rec {
  version = "1.1.4";
  pname = "pytest-relaxed";

  src = fetchPypi {
    inherit pname version;
    sha256 = "511ac473252baa67d5451f7864516e2e8f1acedf0cef71f79d2ed916ee04e146";
  };

  propagatedBuildInputs = [ pytest six decorator ];

  patchPhase = ''
    sed -i "s/pytest>=3,<3.3/pytest/g" setup.py
  '';

  # skip tests due to dir requirements
  doCheck = false;

  checkPhase = ''
    pytest tests
  '';

  meta = with stdenv.lib; {
    homepage = https://pytest-relaxed.readthedocs.io/;
    description = "Relaxed test discovery/organization for pytest";
    license = licenses.bsd0;
    maintainers = [ maintainers.costrouc ];
  };
}