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