python3Packages.jedi: reduce test dependencies

This commit is contained in:
Robert Schütz 2022-02-12 19:18:09 +00:00
parent ae6354cde1
commit ba724316cb

View file

@ -3,9 +3,7 @@
, buildPythonPackage , buildPythonPackage
, pythonOlder , pythonOlder
, fetchFromGitHub , fetchFromGitHub
, colorama
, django , django
, docopt
, pytestCheckHook , pytestCheckHook
, parso , parso
}: }:
@ -26,9 +24,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ parso ]; propagatedBuildInputs = [ parso ];
checkInputs = [ checkInputs = [
colorama
django django
docopt
pytestCheckHook pytestCheckHook
]; ];
@ -50,7 +46,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
homepage = "https://github.com/davidhalter/jedi"; homepage = "https://github.com/davidhalter/jedi";
description = "An autocompletion tool for Python that can be used for text editors"; description = "An autocompletion tool for Python that can be used for text editors";
license = licenses.lgpl3Plus; license = licenses.mit;
maintainers = with maintainers; [ ]; maintainers = with maintainers; [ ];
}; };
} }