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:
aszlig 2012-08-31 15:03:27 +02:00
parent 96ab1aa9df
commit e94d50f359
No known key found for this signature in database
GPG key ID: D0EBD0EC8C2DC961

View file

@ -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";