mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
pep8: New package, version 1.3.3.
This is a style checker/linter to check whether a source files is correctly formatted according to PEP8: http://www.python.org/dev/peps/pep-0008/ Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
96ab1aa9df
commit
e94d50f359
1 changed files with 17 additions and 0 deletions
|
@ -1551,6 +1551,23 @@ let pythonPackages = python.modules // rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
pep8 = buildPythonPackage rec {
|
||||||
|
name = "pep8-${version}";
|
||||||
|
version = "1.3.3";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://pypi.python.org/packages/source/p/pep8/${name}.tar.gz";
|
||||||
|
md5 = "093a99ced0cc3b58c01549d7350f5a73";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://pypi.python.org/pypi/pep8/;
|
||||||
|
description = "Python style guide checker";
|
||||||
|
license = pkgs.lib.licenses.mit;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
pexpect = buildPythonPackage {
|
pexpect = buildPythonPackage {
|
||||||
name = "pexpect-2.3";
|
name = "pexpect-2.3";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue