summary refs log tree commit diff
path: root/pkgs/tools/networking/xxh/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/networking/xxh/default.nix')
-rw-r--r--pkgs/tools/networking/xxh/default.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/pkgs/tools/networking/xxh/default.nix b/pkgs/tools/networking/xxh/default.nix
new file mode 100644
index 00000000000..386b8cafbd1
--- /dev/null
+++ b/pkgs/tools/networking/xxh/default.nix
@@ -0,0 +1,41 @@
+{ lib
+, fetchFromGitHub
+, buildPythonApplication
+, pexpect
+, pyyaml
+, openssh
+, nixosTests
+, pythonOlder
+}:
+
+buildPythonApplication rec{
+  pname = "xxh";
+  version = "0.8.9";
+  format = "setuptools";
+
+  disabled = pythonOlder "3.6";
+
+  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 = with maintainers; [ pasqui23 ];
+  };
+}