Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f5fd79aebd38
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2c96ca1c83a3
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Jun 18, 2019

  1. Copy the full SHA
    fe15046 View commit details
  2. Merge pull request #63415 from talkara/pythonPackages.robotframework-…

    …sshlibrary
    
    pythonPackages.robotframework-sshlibrary: init at 3.3.0
    worldofpeace authored Jun 18, 2019
    Copy the full SHA
    2c96ca1 View commit details
Showing with 31 additions and 0 deletions.
  1. +29 −0 pkgs/development/python-modules/robotframework-sshlibrary/default.nix
  2. +2 −0 pkgs/top-level/python-packages.nix
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
@@ -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 { };