pythonPackages.robotframework-sshlibrary: init at 3.3.0

This commit is contained in:
Taito Horiuchi 2019-06-18 09:22:50 +03:00 committed by worldofpeace
parent afd0817677
commit fe150460a8
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

@ -4302,6 +4302,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 { };