11 buildPythonPackage rec {
16 disabled = pythonOlder "3.8";
18 src = fetchFromGitHub {
19 owner = "python-rope";
21 rev = "refs/tags/${version}";
22 hash = "sha256-g/fta5gW/xPs3VaVuLtikfLhqCKyy1AKRnOcOXjQ8bA=";
31 ] ++ pytoolconfig.optional-dependencies.global;
33 __darwinAllowLocalNetworking = true;
41 "test_search_submodule"
42 "test_get_package_source_pytest"
43 "test_get_modname_folder"
47 description = "Python refactoring library";
48 homepage = "https://github.com/python-rope/rope";
49 changelog = "https://github.com/python-rope/rope/blob/${version}/CHANGELOG.md";
50 license = licenses.gpl3Plus;
51 maintainers = with maintainers; [ goibhniu ];