about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pep8-naming/default.nix
blob: 1c972b0027541e6972d0f15ac7da2b060c7e640b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, fetchPypi, buildPythonPackage
, flake8-polyfill }:

buildPythonPackage rec {
  pname = "pep8-naming";
  version = "0.9.1";

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

  propagatedBuildInputs = [
    flake8-polyfill
  ];

  meta = with lib; {
    homepage = "https://github.com/PyCQA/pep8-naming";
    description = "Check PEP-8 naming conventions, plugin for flake8";
    license = licenses.mit;
    maintainers = with maintainers; [ eadwu ];
  };
}