Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / jedi / default.nix
blobeb90d3c907ed30897d5d197343aa351716e04573
1 { lib
2 , stdenv
3 , buildPythonPackage
4 , pythonOlder
5 , fetchFromGitHub
7 # build-system
8 , setuptools
10 # dependencies
11 , parso
13 # tests
14 , attrs
15 , pytestCheckHook
18 buildPythonPackage rec {
19   pname = "jedi";
20   version = "0.19.1";
21   pyproject = true;
23   disabled = pythonOlder "3.6";
25   src = fetchFromGitHub {
26     owner = "davidhalter";
27     repo = "jedi";
28     rev = "v${version}";
29     hash = "sha256-MD7lIKwAwULZp7yLE6jiao2PU6h6RIl0SQ/6b4Lq+9I=";
30     fetchSubmodules = true;
31   };
33   nativeBuildInputs = [
34     setuptools
35   ];
37   propagatedBuildInputs = [
38     parso
39   ];
41   nativeCheckInputs = [
42     attrs
43     pytestCheckHook
44   ];
46   preCheck = ''
47     export HOME=$TMPDIR
48   '';
50   disabledTests = [
51     # sensitive to platform, causes false negatives on darwin
52     "test_import"
53   ] ++ lib.optionals (stdenv.isAarch64 && pythonOlder "3.9") [
54     # AssertionError: assert 'foo' in ['setup']
55     "test_init_extension_module"
56   ];
58   meta = with lib; {
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; [ ];
64   };