about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/nplusone/default.nix
blob: 5a31394c2d356f7156e037d9adfe7af5cfba7434 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{ lib
, blinker
, buildPythonPackage
, django
, fetchFromGitHub
, flake8
, flask-sqlalchemy
, isPy27
, mock
, peewee
, pytest-django
, pytestCheckHook
, six
, sqlalchemy
, webtest
}:

buildPythonPackage rec {
  pname = "nplusone";
  version = "1.0.0";
  disabled = isPy27;

  src = fetchFromGitHub {
    owner = "jmcarp";
    repo = "nplusone";
    rev = "v${version}";
    sha256 = "0qdwpvvg7dzmksz3vqkvb27n52lq5sa8i06m7idnj5xk2dgjkdxg";
  };

  propagatedBuildInputs = [
    blinker
    six
  ];

  nativeCheckInputs = [
    flake8
    flask-sqlalchemy
    mock
    peewee
    pytest-django
    pytestCheckHook
    sqlalchemy
    webtest
  ];

  # The tests assume the source code is in an nplusone/ directory. When using
  # the Nix sandbox, it will be in a source/ directory instead, making the
  # tests fail.
  prePatch = ''
    substituteInPlace tests/conftest.py \
      --replace nplusone/tests/conftest source/tests/conftest
  '';

  postPatch = ''
    substituteInPlace pytest.ini \
      --replace "python_paths" "pythonpath" \
      --replace "--cov nplusone --cov-report term-missing" ""
  '';

  disabledTests = [
    # Tests are out-dated
    "test_many_to_one"
    "test_many_to_many"
    "test_eager_join"
    "test_eager_subquery"
    "test_eager_subquery_unused"
    "test_many_to_many_raise"
    "test_many_to_many_whitelist_decoy"
    "test_many_to_one_subquery"
    "test_many_to_one_reverse_subquery"
    "test_many_to_many_subquery"
    "test_many_to_many_reverse_subquery"
    "test_profile"
  ];

  pythonImportsCheck = [ "nplusone" ];

  meta = with lib; {
    description = "Detecting the n+1 queries problem in Python";
    homepage = "https://github.com/jmcarp/nplusone";
    maintainers = with maintainers; [ cript0nauta ];
    license = licenses.mit;
    broken = lib.versionAtLeast django.version "4";
  };
}