2017-05-11 21:56:43 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, isPyPy, unittest2 }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyflakes";
|
2019-02-14 07:37:26 +00:00
|
|
|
version = "2.1.0";
|
2017-05-11 21:56:43 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-02-14 07:37:26 +00:00
|
|
|
sha256 = "5e8c00e30c464c99e0b501dc160b13a14af7f27d4dffb529c556e30a159e231d";
|
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; {
|
|
|
|
homepage = https://launchpad.net/pyflakes;
|
|
|
|
description = "A simple program which checks Python source files for errors";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ garbas ];
|
|
|
|
};
|
|
|
|
}
|