about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pep8/default.nix
blob: 74bf420452b9a127625e2773be697ab63ef26392 (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
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "pep8";
  version = "1.7.1";
  format = "setuptools";

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

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

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

}