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