summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-django/default.nix
blob: 0bd59bc85acda0e30c238ed4e7a6c25f0bc3d6d9 (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
{ stdenv, buildPythonPackage, fetchPypi
, pytest, django, setuptools_scm
, fetchpatch
}:
buildPythonPackage rec {
  pname = "pytest-django";
  name = "${pname}-${version}";
  version = "3.1.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "02932m2sr8x22m4az8syr8g835g4ak77varrnw71n6xakmdcr303";
  };

  buildInputs = [ pytest setuptools_scm ];
  propagatedBuildInputs = [ django ];

  patches = [
    # Unpin setuptools-scm
    (fetchpatch {
      url = "https://github.com/pytest-dev/pytest-django/commit/25cbc3b395dcdeb92bdc9414e296680c2b9d602e.patch";
      sha256 = "0mz3rcsv44pfzlxy3pv8mx87glmv34gy0d5aknvbzgb2a9niryws";
    })
  ];

  # Complicated. Requires Django setup.
  doCheck = false;

  meta = with stdenv.lib; {
    description = "py.test plugin for testing of Django applications";
    homepage = http://pytest-django.readthedocs.org/en/latest/;
    license = licenses.bsd3;
  };
}