3
0
Fork 0
forked from mirrors/nixpkgs

Add area53

This commit is contained in:
Rob Vermaas 2012-08-31 12:25:53 +02:00
parent 04f242e281
commit 66bb38cce3

View file

@ -138,6 +138,20 @@ let pythonPackages = python.modules // rec {
};
area53 = buildPythonPackage (rec {
name = "area53-b2c9cdcabd";
src = fetchgit {
url = git://github.com/mariusv/Area53.git;
rev = "b2c9cdcabd";
sha256 = "b0c12b8c48ed9180c7475fab18de50d63e1b517cfb46da4d2c66fc406fe902bc";
};
installCommand = "python setup.py install --prefix=$out";
doCheck = false;
propagatedBuildInputs = [ boto ];
});
argparse = buildPythonPackage (rec {
name = "argparse-1.1";
@ -169,6 +183,7 @@ let pythonPackages = python.modules // rec {
};
});
astng = buildPythonPackage rec {
name = "logilab-astng-0.21.1";