Add python-sexpdata-0.0.2: S-expression parser for Python

This commit is contained in:
Jonas Hoersch 2013-04-21 16:03:29 +02:00
parent dbe6dcd8af
commit 85d2971a2e

View file

@ -3996,6 +3996,22 @@ pythonPackages = python.modules // rec {
});
sexpdata = buildPythonPackage rec {
name = "sexpdata-0.0.2";
src = fetchurl {
url = "http://pypi.python.org/packages/source/s/sexpdata/${name}.tar.gz";
md5 = "efc44265bc27cb3d6ffed4fbf5733fc1";
};
doCheck = false;
meta = {
description = "S-expression parser for Python";
homepage = "https://github.com/tkf/sexpdata";
};
};
six = buildPythonPackage rec {
name = "six-1.1.0";