18 buildPythonPackage rec {
23 disabled = pythonOlder "3.6";
25 src = fetchFromGitHub {
26 owner = "davidhalter";
29 hash = "sha256-MD7lIKwAwULZp7yLE6jiao2PU6h6RIl0SQ/6b4Lq+9I=";
30 fetchSubmodules = true;
37 propagatedBuildInputs = [
51 # sensitive to platform, causes false negatives on darwin
53 ] ++ lib.optionals (stdenv.isAarch64 && pythonOlder "3.9") [
54 # AssertionError: assert 'foo' in ['setup']
55 "test_init_extension_module"
59 description = "An autocompletion tool for Python that can be used for text editors";
60 homepage = "https://github.com/davidhalter/jedi";
61 changelog = "https://github.com/davidhalter/jedi/blob/${version}/CHANGELOG.rst";
62 license = licenses.mit;
63 maintainers = with maintainers; [ ];