1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #9259 from FRidh/pexpect

python-packages pexpect: 2.3 -> 3.3
This commit is contained in:
lethalman 2015-08-26 10:49:45 +02:00
commit e2a260ef4b

View file

@ -9356,17 +9356,15 @@ let
};
pexpect = buildPythonPackage {
name = "pexpect-2.3";
pexpect = buildPythonPackage rec {
version = "3.3";
name = "pexpect-${version}";
src = pkgs.fetchurl {
url = "mirror://sourceforge/pexpect/pexpect-2.3.tar.gz";
sha256 = "0x8bfjjqygriry1iyygm5048ykl5qpbpzqfp6i8dhkslm3ryf5fk";
url = "https://pypi.python.org/packages/source/p/pexpect/${name}.tar.gz";
sha256 = "dfea618d43e83cfff21504f18f98019ba520f330e4142e5185ef7c73527de5ba";
};
# error: invalid command 'test'
doCheck = false;
meta = {
homepage = http://www.noah.org/wiki/Pexpect;
description = "Automate interactive console applications such as ssh, ftp, etc";