Merge pull request #12154 from jgeerds/virtualenv

virtualenv: 1.11.6 -> 13.1.2
This commit is contained in:
Domen Kožar 2016-01-05 12:03:42 +01:00
commit 74df3be447

View file

@ -19656,10 +19656,11 @@ in modules // {
};
virtualenv = buildPythonPackage rec {
name = "virtualenv-1.11.6";
name = "virtualenv-13.1.2";
src = pkgs.fetchurl {
url = "http://pypi.python.org/packages/source/v/virtualenv/${name}.tar.gz";
md5 = "f61cdd983d2c4e6aeabb70b1060d6f49";
sha256 = "1p732accxwqfjbdna39k8w8lp9gyw91vr4kzkhm8mgfxikqqxg5a";
};
pythonPath = [ self.recursivePthLoader ];
@ -19668,9 +19669,8 @@ in modules // {
propagatedBuildInputs = with self; [ modules.readline modules.sqlite3 modules.curses ];
buildInputs = with self; [ mock nose ];
# XXX: Ran 0 tests in 0.003s
# Tarball doesn't contain tests
doCheck = false;
meta = {
description = "a tool to create isolated Python environments";