2021-12-06 16:07:01 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, buildPythonPackage
|
2023-01-20 10:41:00 +00:00
|
|
|
, pythonAtLeast
|
2021-12-06 16:07:01 +00:00
|
|
|
, pythonOlder
|
|
|
|
, fetchFromGitHub
|
2022-12-17 10:02:37 +00:00
|
|
|
, attrs
|
2023-04-12 12:48:02 +00:00
|
|
|
, django_3
|
2021-12-06 16:07:01 +00:00
|
|
|
, pytestCheckHook
|
|
|
|
, parso
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "jedi";
|
2022-12-17 10:02:37 +00:00
|
|
|
version = "0.18.2";
|
|
|
|
format = "setuptools";
|
|
|
|
|
2021-12-06 16:07:01 +00:00
|
|
|
disabled = pythonOlder "3.6";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-09-25 04:45:31 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "davidhalter";
|
|
|
|
repo = "jedi";
|
2021-12-06 16:07:01 +00:00
|
|
|
rev = "v${version}";
|
2022-12-17 10:02:37 +00:00
|
|
|
hash = "sha256-hNRmUFpRzVKJQAtfsSNV4jeTR8vVj1+mGBIPO6tUGto=";
|
2020-09-25 04:45:31 +00:00
|
|
|
fetchSubmodules = true;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ parso ];
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [
|
2022-12-17 10:02:37 +00:00
|
|
|
attrs
|
2023-04-12 12:48:02 +00:00
|
|
|
django_3
|
2021-12-06 16:07:01 +00:00
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
|
|
|
preCheck = ''
|
|
|
|
export HOME=$TMPDIR
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
2021-12-06 16:07:01 +00:00
|
|
|
disabledTests = [
|
|
|
|
# sensitive to platform, causes false negatives on darwin
|
|
|
|
"test_import"
|
|
|
|
] ++ lib.optionals (stdenv.isAarch64 && pythonOlder "3.9") [
|
|
|
|
# AssertionError: assert 'foo' in ['setup']
|
|
|
|
"test_init_extension_module"
|
2023-01-20 10:41:00 +00:00
|
|
|
] ++ lib.optionals (pythonAtLeast "3.11") [
|
|
|
|
# disabled until 3.11 is added to _SUPPORTED_PYTHONS in jedi/api/environment.py
|
|
|
|
"test_find_system_environments"
|
|
|
|
|
|
|
|
# disabled until https://github.com/davidhalter/jedi/issues/1858 is resolved
|
|
|
|
"test_interpreter"
|
|
|
|
"test_scanning_venvs"
|
|
|
|
"test_create_environment_venv_path"
|
|
|
|
"test_create_environment_executable"
|
|
|
|
"test_venv_and_pths"
|
2021-12-06 16:07:01 +00:00
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "An autocompletion tool for Python that can be used for text editors";
|
2022-12-17 10:02:37 +00:00
|
|
|
homepage = "https://github.com/davidhalter/jedi";
|
|
|
|
changelog = "https://github.com/davidhalter/jedi/blob/${version}/CHANGELOG.rst";
|
2022-03-30 09:31:56 +00:00
|
|
|
license = licenses.mit;
|
2020-04-24 23:36:52 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
|
|
|
};
|
|
|
|
}
|