aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/pyflakes/default.nix
blob: 85176d9ccca29294f2bd2682cd8fa618e2ece76f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, fetchPypi, unittest2 }:

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

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

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