1{ stdenv, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "rope";
5 version = "0.11.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "a108c445e1cd897fe19272ab7877d172e7faf3d4148c80e7d20faba42ea8f7b2";
10 };
11
12 meta = with stdenv.lib; {
13 description = "Python refactoring library";
14 homepage = https://github.com/python-rope/rope;
15 maintainers = with maintainers; [ goibhniu ];
16 license = licenses.gpl2;
17 };
18}