Adding ropemacs, a plugin for refactoring python in emacs

svn path=/nixpkgs/trunk/; revision=25913
This commit is contained in:
Cillian de Roiste 2011-02-11 22:49:27 +00:00
parent ad303411cc
commit 98bda5c728

View File

@ -853,6 +853,24 @@ rec {
};
});
ropemacs = buildPythonPackage (rec {
version = "0.6";
name = "ropemacs-${version}";
src = fetchurl {
url = "mirror://sourceforge/rope/${name}.tar.gz";
sha256 = "1afqybmjn7fqkwx8y8kx1kfx181ix73cbq3a0d5n7ryjm7k1r0s4";
};
doCheck = false;
meta = with stdenv.lib; {
description = "a plugin for performing python refactorings in emacs";
homepage = http://rope.sf.net/ropemacs.html;
maintainers = [ maintainers.goibhniu ];
license = licenses.gpl2;
};
});
pysvn = pkgs.stdenv.mkDerivation {
name = "pysvn-1.7.2";