Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, robotframework 5, paramiko 6, scp 7}: 8 9buildPythonPackage rec { 10 version = "3.4.0"; 11 pname = "robotframework-sshlibrary"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "21fa0183776e6061366f517765db479aaa634b707f3dd9d90ef6972adae6a755"; 16 }; 17 18 # unit tests are impure 19 doCheck = false; 20 21 propagatedBuildInputs = [ robotframework paramiko scp ]; 22 23 meta = with stdenv.lib; { 24 description = "SSHLibrary is a Robot Framework test library for SSH and SFTP"; 25 homepage = "https://github.com/robotframework/SSHLibrary"; 26 license = licenses.asl20; 27 }; 28 29}