Merge pull request #262910 from mweinelt/jedi-0.19.1

python311Packages.jedi: 0.19.0 -> 0.19.1
This commit is contained in:
Martin Weinelt 2023-10-23 23:56:20 +02:00 committed by GitHub
commit cf3e738563
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,16 +3,22 @@
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, attrs
, django_3
, pytestCheckHook
# build-system
, setuptools
# dependencies
, parso
# tests
, attrs
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "jedi";
version = "0.19.0";
format = "setuptools";
version = "0.19.1";
pyproject = true;
disabled = pythonOlder "3.6";
@ -20,15 +26,20 @@ buildPythonPackage rec {
owner = "davidhalter";
repo = "jedi";
rev = "v${version}";
hash = "sha256-Hw0+KQkB9ICWbBJDQQmHyKngzJlJ8e3wlpe4aSrlkvo=";
hash = "sha256-MD7lIKwAwULZp7yLE6jiao2PU6h6RIl0SQ/6b4Lq+9I=";
fetchSubmodules = true;
};
propagatedBuildInputs = [ parso ];
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
parso
];
nativeCheckInputs = [
attrs
django_3
pytestCheckHook
];