3
0
Fork 0
forked from mirrors/nixpkgs

Packaged optfunc

svn path=/nixpkgs/trunk/; revision=26531
This commit is contained in:
Evgeny Egorochkin 2011-03-26 18:23:20 +00:00
parent 7dd8b18baa
commit c8b82d5504

View file

@ -624,6 +624,28 @@ rec {
};
});
optfunc = buildPythonPackage ( rec {
name = "optfunc-git";
src = pkgs.fetchgit {
url = "http://github.com/simonw/optfunc.git";
rev = "e3fa034a545ed94ac5a039cf5b170c7d0ee21b7b";
};
installCommand = ''
dest=$(toPythonPath $out)/optfunc
ensureDir $dest
cp * $dest/
'';
doCheck = false;
meta = {
description = "A new experimental interface to optparse which works by introspecting a function definition";
homepage = "http://simonwillison.net/2009/May/28/optfunc/";
};
});
ply = buildPythonPackage (rec {
name = "ply-3.2";