pythonPackages.pep8-naming: init at 0.8.2
This commit is contained in:
parent
e73473f424
commit
beb547a1c6
23
pkgs/development/python-modules/pep8-naming/default.nix
Normal file
23
pkgs/development/python-modules/pep8-naming/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -4071,6 +4071,8 @@ in {
|
|||||||
|
|
||||||
pep8 = callPackage ../development/python-modules/pep8 { };
|
pep8 = callPackage ../development/python-modules/pep8 { };
|
||||||
|
|
||||||
|
pep8-naming = callPackage ../development/python-modules/pep8-naming { };
|
||||||
|
|
||||||
pep257 = callPackage ../development/python-modules/pep257 { };
|
pep257 = callPackage ../development/python-modules/pep257 { };
|
||||||
|
|
||||||
percol = callPackage ../development/python-modules/percol { };
|
percol = callPackage ../development/python-modules/percol { };
|
||||||
|
Loading…
Reference in New Issue
Block a user