1{ lib, fetchPypi, buildPythonPackage
2, flake8-polyfill }:
3
4buildPythonPackage rec {
5 pname = "pep8-naming";
6 version = "0.8.2";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "1aff4g3i2z08cx7z17nbxbf32ddrnvqlk16h6d8h9s9w5ymivjq1";
11 };
12
13 propagatedBuildInputs = [
14 flake8-polyfill
15 ];
16
17 meta = with lib; {
18 homepage = https://github.com/PyCQA/pep8-naming;
19 description = "Check PEP-8 naming conventions, plugin for flake8";
20 license = licenses.mit;
21 maintainers = with maintainers; [ eadwu ];
22 };
23}