nixpkgs/pkgs/development/python-modules/pylama/default.nix

35 lines
783 B
Nix
Raw Normal View History

2018-10-05 01:27:47 +00:00
{ lib, buildPythonPackage, fetchPypi
, eradicate, mccabe, pycodestyle, pydocstyle, pyflakes
2018-03-01 11:03:48 +00:00
, pytest, ipdb }:
buildPythonPackage rec {
pname = "pylama";
2018-10-05 01:27:47 +00:00
version = "7.5.5";
2018-03-01 11:03:48 +00:00
src = fetchPypi {
inherit pname version;
2018-10-05 01:27:47 +00:00
sha256 = "1zg7wca9s5srvbj3kawalv4438l47hg7m6gaw8rd4i43lbyyqya6";
2018-03-01 11:03:48 +00:00
};
2018-10-05 01:27:47 +00: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";
homepage = https://github.com/klen/pylama;
# ambiguous license declarations: https://github.com/klen/pylama/issues/64
2018-10-05 01:27:47 +00:00
license = [ licenses.lgpl3 ];
2018-03-01 11:03:48 +00:00
maintainers = with maintainers; [ dotlambda ];
};
}