summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-pep8/default.nix
blob: 82a900a9d2f02158054042bf9ee1ed8638c9240a (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
27
28
{ stdenv, buildPythonPackage, fetchPypi
, pytest, pytestcache, pep8 }:

buildPythonPackage rec {
  pname = "pytest-pep8";
  version = "1.0.6";

  src = fetchPypi {
    inherit pname version;
    sha256 = "06032agzhw1i9d9qlhfblnl3dw5hcyxhagn7b120zhrszbjzfbh3";
  };

  buildInputs = [ pytest ];
  propagatedBuildInputs = [ pytestcache pep8 ];

  checkPhase = ''
    py.test
  '';

  # Fails
  doCheck = false;

  meta = with stdenv.lib; {
    license = licenses.mit;
    homepage = "https://pypi.python.org/pypi/pytest-pep8";
    description = "pytest plugin to check PEP8 requirements";
  };
}