2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, pythonOlder, unittest2 }:
|
2017-05-11 20:56:43 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyflakes";
|
2021-10-08 22:23:13 +00:00
|
|
|
version = "2.4.0";
|
2017-05-11 20:56:43 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-10-08 22:23:13 +00:00
|
|
|
sha256 = "05a85c2872edf37a4ed30b0cce2f6093e1d0581f8c19d7393122da7e25b2b24c";
|
2017-05-11 20:56:43 +00:00
|
|
|
};
|
|
|
|
|
2019-02-14 10:05:51 +00:00
|
|
|
checkInputs = [ unittest2 ];
|
2017-05-11 20:56:43 +00:00
|
|
|
|
2020-11-11 02:21:15 +00:00
|
|
|
# some tests are output dependent, which have changed slightly
|
|
|
|
doCheck = pythonOlder "3.9";
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://launchpad.net/pyflakes";
|
2017-05-11 20:56:43 +00:00
|
|
|
description = "A simple program which checks Python source files for errors";
|
|
|
|
license = licenses.mit;
|
2019-07-03 09:27:39 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2017-05-11 20:56:43 +00:00
|
|
|
};
|
|
|
|
}
|