mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 02:05:51 +03:00
python3.pkgs.jedi: 0.18.2 -> 0.19.0
This commit is contained in:
parent
9c363cc83f
commit
39fc433514
@ -1,7 +1,6 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, buildPythonPackage
|
||||
, pythonAtLeast
|
||||
, pythonOlder
|
||||
, fetchFromGitHub
|
||||
, attrs
|
||||
@ -12,7 +11,7 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "jedi";
|
||||
version = "0.18.2";
|
||||
version = "0.19.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
@ -21,7 +20,7 @@ buildPythonPackage rec {
|
||||
owner = "davidhalter";
|
||||
repo = "jedi";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-hNRmUFpRzVKJQAtfsSNV4jeTR8vVj1+mGBIPO6tUGto=";
|
||||
hash = "sha256-Hw0+KQkB9ICWbBJDQQmHyKngzJlJ8e3wlpe4aSrlkvo=";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
@ -43,16 +42,6 @@ buildPythonPackage rec {
|
||||
] ++ lib.optionals (stdenv.isAarch64 && pythonOlder "3.9") [
|
||||
# AssertionError: assert 'foo' in ['setup']
|
||||
"test_init_extension_module"
|
||||
] ++ 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"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
|
Loading…
Reference in New Issue
Block a user