2018-10-05 02:27:47 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi
|
|
|
|
, eradicate, mccabe, pycodestyle, pydocstyle, pyflakes
|
2018-03-01 11:03:48 +00:00
|
|
|
, pytest, ipdb }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pylama";
|
2019-04-11 18:23:21 +01:00
|
|
|
version = "7.7.1";
|
2018-03-01 11:03:48 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-04-11 18:23:21 +01:00
|
|
|
sha256 = "9bae53ef9c1a431371d6a8dca406816a60d547147b60a4934721898f553b7d8f";
|
2018-03-01 11:03:48 +00:00
|
|
|
};
|
|
|
|
|
2018-10-05 02:27:47 +01:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
eradicate
|
|
|
|
mccabe
|
|
|
|
pycodestyle
|
|
|
|
pydocstyle
|
|
|
|
pyflakes
|
|
|
|
];
|
2018-03-01 11:03:48 +00:00
|
|
|
|
|
|
|
checkInputs = [ pytest ipdb ];
|
|
|
|
|
|
|
|
# tries to mess with the file system
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Code audit tool for python";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/klen/pylama";
|
2018-03-01 11:03:48 +00:00
|
|
|
# ambiguous license declarations: https://github.com/klen/pylama/issues/64
|
2018-10-05 02:27:47 +01:00
|
|
|
license = [ licenses.lgpl3 ];
|
2018-03-01 11:03:48 +00:00
|
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
|
|
};
|
|
|
|
}
|