1{ stdenv, buildPythonPackage, fetchPypi, unittest2 }:
2
3buildPythonPackage rec {
4 pname = "pyflakes";
5 version = "2.1.1";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "d976835886f8c5b31d47970ed689944a0262b5f3afa00a5a7b4dc81e5449f8a2";
10 };
11
12 checkInputs = [ unittest2 ];
13
14 meta = with stdenv.lib; {
15 homepage = https://launchpad.net/pyflakes;
16 description = "A simple program which checks Python source files for errors";
17 license = licenses.mit;
18 maintainers = with maintainers; [ ];
19 };
20}