summary refs log tree commit diff
path: root/pkgs/development/tools/misc
diff options
context:
space:
mode:
authorLeandro Reina <leandro.reina@ororatech.com>2023-09-19 10:53:06 +0200
committerLeandro Reina <leandro.reina@ororatech.com>2023-09-19 10:53:06 +0200
commit0f465f79819cf1726a9cd0e60496cedf4559e858 (patch)
tree3562d69f677abe0d703ccc6eaf640413955468a2 /pkgs/development/tools/misc
parent128512d54bf689da895b20c26058a2e1577b10d6 (diff)
downloadnixpkgs-0f465f79819cf1726a9cd0e60496cedf4559e858.tar
nixpkgs-0f465f79819cf1726a9cd0e60496cedf4559e858.tar.gz
nixpkgs-0f465f79819cf1726a9cd0e60496cedf4559e858.tar.bz2
nixpkgs-0f465f79819cf1726a9cd0e60496cedf4559e858.tar.lz
nixpkgs-0f465f79819cf1726a9cd0e60496cedf4559e858.tar.xz
nixpkgs-0f465f79819cf1726a9cd0e60496cedf4559e858.tar.zst
nixpkgs-0f465f79819cf1726a9cd0e60496cedf4559e858.zip
yakut: init at 0.13.0
Diffstat (limited to 'pkgs/development/tools/misc')
-rw-r--r--pkgs/development/tools/misc/yakut/default.nix51
1 files changed, 51 insertions, 0 deletions
diff --git a/pkgs/development/tools/misc/yakut/default.nix b/pkgs/development/tools/misc/yakut/default.nix
new file mode 100644
index 00000000000..4c993c19cdc
--- /dev/null
+++ b/pkgs/development/tools/misc/yakut/default.nix
@@ -0,0 +1,51 @@
+{ lib
+, buildPythonApplication
+, fetchPypi
+, stdenv
+, click
+, coloredlogs
+, psutil
+, pycyphal
+, pyserial
+, ruamel-yaml
+, requests
+, scipy
+, simplejson
+}:
+
+buildPythonApplication rec {
+  pname = "yakut";
+  version = "0.13.0";
+  format = "setuptools";
+
+  src = fetchPypi {
+    inherit pname version;
+    hash = "sha256-MBVSt01D36rBPW2bopujyu8Opwwavmm7S3tdaWp5ACw=";
+  };
+
+  buildInputs = [
+    stdenv.cc.cc.lib
+    click
+    coloredlogs
+    psutil
+    pycyphal
+    pyserial
+    ruamel-yaml
+    requests
+    scipy
+    simplejson
+  ];
+
+  # Can't seem to run the tests on nix
+  doCheck = false;
+
+  meta = with lib; {
+    description = "Simple CLI tool for diagnostics and debugging of Cyphal networks";
+    longDescription = ''
+      YakĂșt is a simple cross-platform command-line interface (CLI) tool for diagnostics and debugging of Cyphal networks. By virtue of being based on PyCyphal, Yakut supports all Cyphal transports (UDP, serial, CAN, ...) and is compatible with all major features of the protocol. It is designed to be usable with GNU/Linux, Windows, and macOS.
+    '';
+    homepage = "https://github.com/OpenCyphal/yakut/";
+    license = licenses.mit;
+    maintainers = [ teams.ororatech ];
+  };
+}