prospector: init at 1.2.0
This commit is contained in:
parent
3773e45fbb
commit
a892d9617d
74
pkgs/development/tools/prospector/default.nix
Normal file
74
pkgs/development/tools/prospector/default.nix
Normal file
@ -0,0 +1,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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
26
pkgs/development/tools/prospector/setoptconf.nix
Normal file
26
pkgs/development/tools/prospector/setoptconf.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, lib
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "setoptconf";
|
||||||
|
version = "0.2.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "177l7j68j751i781bgk6pfhxjj7hwqxzdm2ja5fkywbp0275s2sv";
|
||||||
|
};
|
||||||
|
|
||||||
|
# Base tests provided via PyPi are broken
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://pypi.org/project/setoptconf";
|
||||||
|
description = "A module for retrieving program settings from various sources in a consistant method";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [
|
||||||
|
kamadorueda
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
@ -13653,6 +13653,10 @@ in
|
|||||||
buildPythonApplication click future six;
|
buildPythonApplication click future six;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
prospector = callPackage ../development/tools/prospector {
|
||||||
|
python = python37;
|
||||||
|
};
|
||||||
|
|
||||||
protobuf = protobuf3_7;
|
protobuf = protobuf3_7;
|
||||||
|
|
||||||
protobuf3_11 = callPackage ../development/libraries/protobuf/3.11.nix { };
|
protobuf3_11 = callPackage ../development/libraries/protobuf/3.11.nix { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user