pythonPackages.pep8-naming: init at 0.8.2

This commit is contained in:
Edmund Wu 2019-01-22 10:22:33 -05:00
parent e73473f424
commit beb547a1c6
No known key found for this signature in database
GPG Key ID: 76AA3F9F2BD3E3A0
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ lib, fetchPypi, buildPythonPackage
, flake8-polyfill }:
buildPythonPackage rec {
pname = "pep8-naming";
version = "0.8.2";
src = fetchPypi {
inherit pname version;
sha256 = "1aff4g3i2z08cx7z17nbxbf32ddrnvqlk16h6d8h9s9w5ymivjq1";
};
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 ];
};
}

View File

@ -4071,6 +4071,8 @@ in {
pep8 = callPackage ../development/python-modules/pep8 { };
pep8-naming = callPackage ../development/python-modules/pep8-naming { };
pep257 = callPackage ../development/python-modules/pep257 { };
percol = callPackage ../development/python-modules/percol { };