about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/prospector/default.nix
blob: 38472ce86f018843d69a5c3229c0667c662adffe (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
{ lib
, pkgs
, python
}:

let
  py = python.override {
    packageOverrides = self: super: {
      pep8-naming = super.pep8-naming.overridePythonAttrs(oldAttrs: rec {
        version = "0.4.1";
        src = oldAttrs.src.override {
          inherit version;
          sha256 = "0nhf8p37y008shd4f21bkj5pizv8q0l8cpagyyb8gr059d6gvvaf";
        };
      });
    };
  };
  setoptconf = py.pkgs.callPackage ./setoptconf.nix { };
in

with py.pkgs;

buildPythonApplication rec {
  pname = "prospector";
  version = "1.2.0";
  disabled = isPy27;

  src = pkgs.fetchFromGitHub {
    owner = "PyCQA";
    repo = pname;
    rev = version;
    sha256 = "07kb37zrrsriqzcmli0ghx7qb1iwkzh83qsiikl9jy50faby2sjg";
  };

  checkInputs = [
    pytest
  ];

  checkPhase = ''
    pytest
  '';

  patchPhase = ''
    substituteInPlace setup.py \
      --replace 'pycodestyle<=2.4.0' 'pycodestyle<=2.5.0'
  '';

  propagatedBuildInputs = [
    astroid
    django
    dodgy
    mccabe
    pep8-naming
    pycodestyle
    pydocstyle
    pyflakes
    pylint
    pylint-celery
    pylint-django
    pylint-flask
    pyyaml
    requirements-detector
    setoptconf
  ];

  meta = with lib; {
    description = "Tool to analyse Python code and output information about errors, potential problems, convention violations and complexity";
    homepage = "https://github.com/PyCQA/prospector";
    license = licenses.gpl2;
    maintainers = with maintainers; [
      kamadorueda
    ];
  };
}