about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pycodestyle/default.nix
blob: 286f42e2f30b79e834ed287d9f7fea121f7aacbd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "pycodestyle";
  version = "2.5.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "e40a936c9a450ad81df37f549d676d127b1b66000a6c500caa2b085bc0ca976c";
  };

  meta = with lib; {
    description = "Python style guide checker (formerly called pep8)";
    homepage = https://pycodestyle.readthedocs.io;
    license = licenses.mit;
    maintainers = with maintainers; [ ];
  };
}