Merge pull request #298818 from r-ryantm/auto-update/python312Packages.rope

python312Packages.rope: 1.12.0 -> 1.13.0
This commit is contained in:
Fabian Affolter 2024-03-25 10:36:57 +01:00 committed by GitHub
commit 3b597532fa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,23 +10,23 @@
buildPythonPackage rec {
pname = "rope";
version = "1.12.0";
version = "1.13.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "python-rope";
repo = pname;
repo = "rope";
rev = "refs/tags/${version}";
hash = "sha256-j/9q2S2B3DzmEqMOBLG9iHwnLqZipcPxLaKppysJffA=";
hash = "sha256-g/fta5gW/xPs3VaVuLtikfLhqCKyy1AKRnOcOXjQ8bA=";
};
nativeBuildInputs = [
build-system = [
setuptools
];
propagatedBuildInputs = [
dependencies = [
pytoolconfig
] ++ pytoolconfig.optional-dependencies.global;