python312Packages.rope: refactor

This commit is contained in:
Fabian Affolter 2024-03-25 09:31:29 +01:00 committed by GitHub
parent a3389a0c30
commit 424ce23c6f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,16 +17,16 @@ buildPythonPackage rec {
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "python-rope"; owner = "python-rope";
repo = pname; repo = "rope";
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-g/fta5gW/xPs3VaVuLtikfLhqCKyy1AKRnOcOXjQ8bA="; hash = "sha256-g/fta5gW/xPs3VaVuLtikfLhqCKyy1AKRnOcOXjQ8bA=";
}; };
nativeBuildInputs = [ build-system = [
setuptools setuptools
]; ];
propagatedBuildInputs = [ dependencies = [
pytoolconfig pytoolconfig
] ++ pytoolconfig.optional-dependencies.global; ] ++ pytoolconfig.optional-dependencies.global;