nixpkgs/pkgs/development/python-modules/pyflakes/default.nix

21 lines
538 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, isPyPy, unittest2 }:
buildPythonPackage rec {
pname = "pyflakes";
2019-02-14 07:37:26 +00:00
version = "2.1.0";
src = fetchPypi {
inherit pname version;
2019-02-14 07:37:26 +00:00
sha256 = "5e8c00e30c464c99e0b501dc160b13a14af7f27d4dffb529c556e30a159e231d";
};
2019-02-14 10:05:51 +00:00
checkInputs = [ unittest2 ];
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 ];
};
}