more python cleanup, actually commenting for now

Conflicts:
	pkgs/top-level/python-packages.nix
This commit is contained in:
Florian Friesdorf 2012-07-21 21:43:39 +02:00
parent 311fe7e371
commit a68f4f12a9

View File

@ -278,23 +278,23 @@ let pythonPackages = python.modules // rec {
}; };
bugz = buildPythonPackage (rec { # bugz = buildPythonPackage (rec {
name = "bugz-0.9.3"; # name = "bugz-0.9.3";
src = fetchgit { # src = fetchgit {
url = "https://github.com/williamh/pybugz.git"; # url = "https://github.com/williamh/pybugz.git";
rev = "refs/tags/0.9.3"; # rev = "refs/tags/0.9.3";
}; # };
propagatedBuildInputs = [ argparse python.modules.ssl ]; # propagatedBuildInputs = [ argparse python.modules.ssl ];
doCheck = false; # doCheck = false;
meta = { # meta = {
homepage = http://www.liquidx.net/pybugz/; # homepage = http://www.liquidx.net/pybugz/;
description = "Command line interface for Bugzilla"; # description = "Command line interface for Bugzilla";
}; # };
}); # });
carrot = buildPythonPackage rec { carrot = buildPythonPackage rec {
@ -1479,27 +1479,27 @@ let pythonPackages = python.modules // rec {
}; };
}); });
optfunc = buildPythonPackage ( rec { # optfunc = buildPythonPackage ( rec {
name = "optfunc-git"; # name = "optfunc-git";
#
src = pkgs.fetchgit { # src = pkgs.fetchgit {
url = "https://github.com/simonw/optfunc.git"; # url = "https://github.com/simonw/optfunc.git";
rev = "e3fa034a545ed94ac5a039cf5b170c7d0ee21b7b"; # rev = "e3fa034a545ed94ac5a039cf5b170c7d0ee21b7b";
}; # };
#
installCommand = '' # installCommand = ''
dest=$(toPythonPath $out)/optfunc # dest=$(toPythonPath $out)/optfunc
mkdir -p $dest # mkdir -p $dest
cp * $dest/ # cp * $dest/
''; # '';
#
doCheck = false; # doCheck = false;
#
meta = { # meta = {
description = "A new experimental interface to optparse which works by introspecting a function definition"; # description = "A new experimental interface to optparse which works by introspecting a function definition";
homepage = "http://simonwillison.net/2009/May/28/optfunc/"; # homepage = "http://simonwillison.net/2009/May/28/optfunc/";
}; # };
}); # });
ply = buildPythonPackage (rec { ply = buildPythonPackage (rec {
name = "ply-3.2"; name = "ply-3.2";
@ -3146,11 +3146,11 @@ let pythonPackages = python.modules // rec {
# url = "http://pypi.python.org/packages/source/h/hgsvn/${name}.tar.gz#md5=56209eae48b955754e09185712123428"; # url = "http://pypi.python.org/packages/source/h/hgsvn/${name}.tar.gz#md5=56209eae48b955754e09185712123428";
# sha256 = "18a7bj1i0m4shkxmdvw1ci5i0isq5vqf0bpwgrhnk305rijvbpch"; # sha256 = "18a7bj1i0m4shkxmdvw1ci5i0isq5vqf0bpwgrhnk305rijvbpch";
# }; # };
#
# buildInputs = [ pkgs.setuptools ]; # buildInputs = [ pkgs.setuptools ];
# doCheck = false; # doCheck = false;
#
# meta = { # meta = {
# description = "HgSVN"; # description = "HgSVN";
# homepage = http://pypi.python.org/pypi/hgsvn; # homepage = http://pypi.python.org/pypi/hgsvn;
# }; # };