Merge pull request #63415 from talkara/pythonPackages.robotframework-sshlibrary

pythonPackages.robotframework-sshlibrary: init at 3.3.0
This commit is contained in:
worldofpeace 2019-06-18 15:10:50 -04:00 committed by GitHub
commit 2c96ca1c83
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, robotframework
, paramiko
, scp
}:
buildPythonPackage rec {
version = "3.3.0";
pname = "robotframework-sshlibrary";
src = fetchPypi {
inherit pname version;
sha256 = "fc5b5db63cf63a937bd4ada1a8b7508ec8a75d9454fa75e6410cbe72fd718de9";
};
# unit tests are impure
doCheck = false;
propagatedBuildInputs = [ robotframework paramiko scp ];
meta = with stdenv.lib; {
description = "SSHLibrary is a Robot Framework test library for SSH and SFTP";
homepage = https://github.com/robotframework/SSHLibrary;
license = licenses.asl20;
};
}

View file

@ -4312,6 +4312,8 @@ in {
robotframework-selenium2library = callPackage ../development/python-modules/robotframework-selenium2library { };
robotframework-sshlibrary = callPackage ../development/python-modules/robotframework-sshlibrary { };
robotframework-tools = callPackage ../development/python-modules/robotframework-tools { };
robotstatuschecker = callPackage ../development/python-modules/robotstatuschecker { };