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

21 lines
525 B
Nix
Raw Normal View History

2019-06-16 19:59:06 +00:00
{ stdenv, buildPythonPackage, fetchPypi, unittest2 }:
2017-05-11 22:56:43 +02:00
buildPythonPackage rec {
pname = "pyflakes";
2020-06-06 08:47:24 +02:00
version = "2.2.0";
2017-05-11 22:56:43 +02:00
src = fetchPypi {
inherit pname version;
2020-06-06 08:47:24 +02:00
sha256 = "35b2d75ee967ea93b55750aa9edbbf72813e06a66ba54438df2cfac9e3c27fc8";
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";
2017-05-11 22:56:43 +02:00
description = "A simple program which checks Python source files for errors";
license = licenses.mit;
maintainers = with maintainers; [ ];
2017-05-11 22:56:43 +02:00
};
}