Packaged optfunc
svn path=/nixpkgs/trunk/; revision=26531
This commit is contained in:
parent
7dd8b18baa
commit
c8b82d5504
@ -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 {
|
ply = buildPythonPackage (rec {
|
||||||
name = "ply-3.2";
|
name = "ply-3.2";
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user