about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyflakes/default.nix
blob: 354535d47ac5a020ba6dfe7b25fa4b780a127977 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, fetchPypi, isPyPy, unittest2 }:

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "5e8c00e30c464c99e0b501dc160b13a14af7f27d4dffb529c556e30a159e231d";
  };

  checkInputs = [ unittest2 ];

  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 ];
  };
}