24 lines
607 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, isPyPy, unittest2 }:
buildPythonPackage rec {
pname = "pyflakes";
2019-02-14 08:37:26 +01:00
version = "2.1.0";
src = fetchPypi {
inherit pname version;
2019-02-14 08:37:26 +01:00
sha256 = "5e8c00e30c464c99e0b501dc160b13a14af7f27d4dffb529c556e30a159e231d";
};
buildInputs = [ unittest2 ];
2018-11-05 14:33:13 +01:00
# https://github.com/PyCQA/pyflakes/issues/386
doCheck = false;
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 ];
};
}