summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-factoryboy/default.nix
blob: eea6c61a7274c7778c343ae731bc0684725f7f04 (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
38
39
40
41
42
43
44
45
46
47
{ lib
, buildPythonPackage
, factory_boy
, fetchFromGitHub
, inflection
, mock
, pytest
, pytestcache
, pytestCheckHook
, pytest-cov
}:

buildPythonPackage rec {
  pname = "pytest-factoryboy";
  version = "2.1.0";

  src = fetchFromGitHub {
    owner = "pytest-dev";
    repo = "pytest-factoryboy";
    rev = version;
    sha256 = "0v6b4ly0p8nknpnp3f4dbslfsifzzjx2vv27rfylx04kzdhg4m9p";
  };

  buildInputs = [ pytest ];

  propagatedBuildInputs = [
    factory_boy
    inflection
  ];

  checkInputs = [
    mock
    pytestCheckHook
    pytestcache
    pytest-cov
  ];

  pytestFlagsArray = [ "--ignore=docs" ];
  pythonImportsCheck = [ "pytest_factoryboy" ];

  meta = with lib; {
    description = "Integration of factory_boy into the pytest runner";
    homepage = "https://pytest-factoryboy.readthedocs.io/en/latest/";
    maintainers = with maintainers; [ winpat ];
    license = licenses.mit;
  };
}