2019-06-16 12:59:06 -07:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, unittest2 }:
|
2017-05-11 13:56:43 -07:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyflakes";
|
2020-06-05 23:47:24 -07:00
|
|
|
version = "2.2.0";
|
2017-05-11 13:56:43 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-05 23:47:24 -07:00
|
|
|
sha256 = "35b2d75ee967ea93b55750aa9edbbf72813e06a66ba54438df2cfac9e3c27fc8";
|
2017-05-11 13:56:43 -07:00
|
|
|
};
|
|
|
|
|
2019-02-14 02:05:51 -08:00
|
|
|
checkInputs = [ unittest2 ];
|
2017-05-11 13:56:43 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://launchpad.net/pyflakes";
|
2017-05-11 13:56:43 -07:00
|
|
|
description = "A simple program which checks Python source files for errors";
|
|
|
|
license = licenses.mit;
|
2019-07-03 02:27:39 -07:00
|
|
|
maintainers = with maintainers; [ ];
|
2017-05-11 13:56:43 -07:00
|
|
|
};
|
|
|
|
}
|