diff options
Diffstat (limited to 'pkgs/development/python-modules/pyflakes/default.nix')
-rw-r--r-- | pkgs/development/python-modules/pyflakes/default.nix | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/pkgs/development/python-modules/pyflakes/default.nix b/pkgs/development/python-modules/pyflakes/default.nix index fab3c7d789b2..aaf9e961cb23 100644 --- a/pkgs/development/python-modules/pyflakes/default.nix +++ b/pkgs/development/python-modules/pyflakes/default.nix @@ -1,9 +1,10 @@ -{ lib -, buildPythonPackage -, pythonOlder -, fetchFromGitHub -, setuptools -, pytestCheckHook +{ + lib, + buildPythonPackage, + pythonOlder, + fetchFromGitHub, + setuptools, + pytestCheckHook, }: buildPythonPackage rec { @@ -21,20 +22,16 @@ buildPythonPackage rec { hash = "sha256-ouCkkm9OrYob00uLTilqgWsTWfHhzaiZp7sa2C5liqk="; }; - nativeBuildInputs = [ - setuptools - ]; + nativeBuildInputs = [ setuptools ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "pyflakes" ]; meta = with lib; { homepage = "https://github.com/PyCQA/pyflakes"; changelog = "https://github.com/PyCQA/pyflakes/blob/${src.rev}/NEWS.rst"; - description = "A simple program which checks Python source files for errors"; + description = "Simple program which checks Python source files for errors"; mainProgram = "pyflakes"; license = licenses.mit; maintainers = with maintainers; [ dotlambda ]; |