1{ lib, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "pycodestyle";
5 version = "2.4.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "cbfca99bd594a10f674d0cd97a3d802a1fdef635d4361e1a2658de47ed261e3a";
10 };
11
12 meta = with lib; {
13 description = "Python style guide checker (formerly called pep8)";
14 homepage = https://pycodestyle.readthedocs.io;
15 license = licenses.mit;
16 maintainers = with maintainers; [ garbas ];
17 };
18}