summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyflakes/default.nix
blob: 3f799c1962a8978fc4ccfb40e2b2c6ba81558b5f (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
{ stdenv, buildPythonPackage, fetchPypi, isPyPy, unittest2 }:

buildPythonPackage rec {
  pname = "pyflakes";
  version = "2.0.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "9a7662ec724d0120012f6e29d6248ae3727d821bba522a0e6b356eff19126a49";
  };

  buildInputs = [ unittest2 ];

  # https://github.com/PyCQA/pyflakes/issues/386
  doCheck = false;

  meta = with stdenv.lib; {
    homepage = https://launchpad.net/pyflakes;
    description = "A simple program which checks Python source files for errors";
    license = licenses.mit;
    maintainers = with maintainers; [ garbas ];
  };
}