about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pep8/default.nix
blob: 9e31063b4611187a6a3df5366d323e74661e23e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv
, buildPythonPackage
, fetchPypi
, pythonAtLeast
}:

buildPythonPackage rec {
  pname = "pep8";
  version = "1.7.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "a113d5f5ad7a7abacef9df5ec3f2af23a20a28005921577b15dd584d099d5900";
  };

  # FAIL: test_checkers_testsuite (testsuite.test_all.Pep8TestCase)
  doCheck = false;

  meta = with stdenv.lib; {
    homepage = "http://pep8.readthedocs.org/";
    description = "Python style guide checker";
    license = licenses.mit;
    maintainers = with maintainers; [ garbas ];
  };

}