Skip to content

Commit

Permalink
Merge pull request #63415 from talkara/pythonPackages.robotframework-…
Browse files Browse the repository at this point in the history
…sshlibrary

pythonPackages.robotframework-sshlibrary: init at 3.3.0
  • Loading branch information
worldofpeace committed Jun 18, 2019
2 parents f5fd79a + fe15046 commit 2c96ca1
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -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;
};

}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit 2c96ca1

Please sign in to comment.