python310Packages.jedi: 0.18.1 -> 0.18.2
This commit is contained in:
parent
f5977af489
commit
28ba469101
@ -3,6 +3,7 @@
|
|||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
|
, attrs
|
||||||
, django
|
, django
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
, parso
|
, parso
|
||||||
@ -10,20 +11,22 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "jedi";
|
pname = "jedi";
|
||||||
version = "0.18.1";
|
version = "0.18.2";
|
||||||
|
format = "setuptools";
|
||||||
disabled = pythonOlder "3.6";
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "davidhalter";
|
owner = "davidhalter";
|
||||||
repo = "jedi";
|
repo = "jedi";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-wWNPNi16WtefvB7GcQBnWMbHVlVzxSFs4TKRqEasuR0=";
|
hash = "sha256-hNRmUFpRzVKJQAtfsSNV4jeTR8vVj1+mGBIPO6tUGto=";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ parso ];
|
propagatedBuildInputs = [ parso ];
|
||||||
|
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
|
attrs
|
||||||
django
|
django
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
];
|
];
|
||||||
|
Loading…
Reference in New Issue
Block a user