forked from mirrors/nixpkgs
Merge pull request #9259 from FRidh/pexpect
python-packages pexpect: 2.3 -> 3.3
This commit is contained in:
commit
e2a260ef4b
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue