12 buildPythonPackage rec {
17 disabled = pythonOlder "3.8";
19 src = fetchFromGitHub {
20 owner = "python-rope";
22 rev = "refs/tags/${version}";
23 hash = "sha256-g/fta5gW/xPs3VaVuLtikfLhqCKyy1AKRnOcOXjQ8bA=";
26 build-system = [ setuptools ];
28 dependencies = [ pytoolconfig ] ++ pytoolconfig.optional-dependencies.global;
30 __darwinAllowLocalNetworking = true;
38 "test_search_submodule"
39 "test_get_package_source_pytest"
40 "test_get_modname_folder"
44 description = "Python refactoring library";
45 homepage = "https://github.com/python-rope/rope";
46 changelog = "https://github.com/python-rope/rope/blob/${version}/CHANGELOG.md";
47 license = licenses.gpl3Plus;