Merge pull request #509 from coroa/elpy-pkg

Add python-elpy-1.0.1: Backend for the elpy Emacs mode
This commit is contained in:
Phreedom 2013-05-07 16:45:29 -07:00
commit 53799435a2

View file

@ -1509,6 +1509,24 @@ pythonPackages = python.modules // rec {
};
elpy = buildPythonPackage rec {
name = "elpy-1.0.1";
src = fetchurl {
url = "http://pypi.python.org/packages/source/e/elpy/elpy-1.0.1.tar.gz";
md5 = "5453f085f7871ed8fc11d51f0b68c785";
};
buildInputs = [ ];
propagatedBuildInputs = [ flake8 ];
doCheck = false; # there are no tests
meta = {
description = "Backend for the elpy Emacs mode";
homepage = "https://github.com/jorgenschaefer/elpy";
};
};
enum = buildPythonPackage rec {
name = "enum-0.4.4";