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