17 buildPythonPackage rec {
22 src = fetchFromGitHub {
23 owner = "python-rope";
25 rev = "refs/tags/${version}";
26 hash = "sha256-gEmSZQZ2rtSljN8USsUiqsP2cr54k6kwvsz8cjam9dU=";
38 pythonImportsCheck = [ "pylsp_rope" ];
40 nativeCheckInputs = [ pytestCheckHook ];
43 description = "Extended refactoring capabilities for Python LSP Server using Rope";
44 homepage = "https://github.com/python-rope/pylsp-rope";
45 changelog = "https://github.com/python-rope/pylsp-rope/releases/tag/${version}";
46 license = lib.licenses.mit;
47 maintainers = with lib.maintainers; [ GaetanLepage ];