about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pytest-factoryboy/default.nix
blob: 44a59730146c74612d7b9245bf568e3b8d8c78ce (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
{ stdenv
, fetchFromGitHub
, buildPythonPackage
, pytestCheckHook
, pytest
, inflection
, factory_boy
, pytestcache
, pytestcov
, pytestpep8
, mock
}:

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

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

  propagatedBuildInputs = [ factory_boy inflection pytest ];

  # The project uses tox, which we can't. So we simply run pytest manually.
  checkInputs = [
    mock
    pytestCheckHook
    pytestcache
    pytestcov
    pytestpep8
  ];
  pytestFlagsArray = [ "--ignore=docs" ];

  meta = with stdenv.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;
  };
}