3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/xxh/default.nix
2022-02-14 10:36:14 +00:00

27 lines
643 B
Nix

{ lib, fetchFromGitHub, buildPythonApplication, pexpect, pyyaml, openssh, nixosTests }:
buildPythonApplication rec{
pname = "xxh";
version = "0.8.9";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
hash = "sha256-Uo7xFwE9e5MFWDlNWq15kg+4xf/hF4WGUNTpTK+rgVg=";
};
propagatedBuildInputs = [ pexpect pyyaml openssh ];
passthru.tests = {
inherit (nixosTests) xxh;
};
meta = with lib; {
description = "Bring your favorite shell wherever you go through ssh";
homepage = "https://github.com/xxh/xxh";
license = licenses.bsd2;
maintainers = [ maintainers.pasqui23 ];
};
}