Added pew and virtualenv-clone

This commit is contained in:
Dario Bertini 2014-03-03 14:06:12 +01:00
parent 6a95e90f27
commit 38d69b08fe
No known key found for this signature in database
GPG Key ID: 7B498306B3BF75A0

View File

@ -1782,6 +1782,23 @@ pythonPackages = modules // import ./python-packages-generated.nix {
};
};
pew = buildPythonPackage rec {
name = "pew-0.1.9";
src = fetchurl {
url = "https://pypi.python.org/packages/source/p/pew/${name}.tar.gz";
md5 = "90a82400074b50a9e73c3045ed9ac217";
};
buildInputs = [ virtualenv virtualenv-clone ];
meta = with stdenv.lib; {
description = "Tools to manage multiple virtualenvs written in pure python, a virtualenvwrapper rewrite";
license = licenses.mit;
platforms = platforms.all;
};
};
pudb = buildPythonPackage rec {
name = "pudb-2013.3.6";
@ -7229,6 +7246,23 @@ pythonPackages = modules // import ./python-packages-generated.nix {
};
};
virtualenv-clone = buildPythonPackage rec {
name = "virtualenv-clone-0.2.4";
src = fetchgit {
url = "https://github.com/berdario/virtualenv-clone.git";
rev = ''c302ca84e524cb22f88c834cccb23dd410cced97'';
};
doCheck = false;
meta = with stdenv.lib; {
description = "Script to clone virtualenvs";
license = licenses.mit;
platforms = platforms.all;
};
};
waitress = buildPythonPackage rec {
name = "waitress-0.8.7";