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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
896 B
Nix
Raw Normal View History

{ buildPythonPackage
, fetchPypi
, lib
2020-06-07 08:33:46 +01:00
, python
}:
2017-07-13 01:32:27 +01:00
buildPythonPackage rec {
pname = "pycodestyle";
version = "2.8.0";
2017-07-13 01:32:27 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "0zxyrg8029lzjhima6l5nk6y0z6lm5wfp9qchz3s33j3xx3mipgd";
2017-07-13 01:32:27 +01:00
};
2020-06-07 08:33:46 +01:00
dontUseSetuptoolsCheck = true;
# https://github.com/PyCQA/pycodestyle/blob/2.5.0/tox.ini#L14
checkPhase = ''
2020-06-07 08:33:46 +01:00
${python.interpreter} pycodestyle.py --max-doc-length=72 --testsuite testsuite
${python.interpreter} pycodestyle.py --statistics pycodestyle.py
${python.interpreter} pycodestyle.py --max-doc-length=72 --doctest
${python.interpreter} -m unittest discover testsuite -vv
'';
2017-07-13 01:32:27 +01:00
meta = with lib; {
description = "Python style guide checker (formerly called pep8)";
homepage = "https://pycodestyle.readthedocs.io";
2017-07-13 01:32:27 +01:00
license = licenses.mit;
maintainers = with maintainers; [
kamadorueda
];
2017-07-13 01:32:27 +01:00
};
}