about summary refs log tree commit diff
path: root/pkgs/tools/security/arubaotp-seed-extractor
diff options
context:
space:
mode:
authorFrancesco Gazzetta <fgaz@fgaz.me>2023-01-07 16:35:18 +0100
committerFrancesco Gazzetta <fgaz@fgaz.me>2023-01-15 01:15:39 +0100
commit37455d156a813601a8eb324dc20b30f864963658 (patch)
treee57fbb68b03968621e0879440b06ea36f54bd679 /pkgs/tools/security/arubaotp-seed-extractor
parent932d315a5a982f482fa63edda24334ccb133aae7 (diff)
downloadnixlib-37455d156a813601a8eb324dc20b30f864963658.tar
nixlib-37455d156a813601a8eb324dc20b30f864963658.tar.gz
nixlib-37455d156a813601a8eb324dc20b30f864963658.tar.bz2
nixlib-37455d156a813601a8eb324dc20b30f864963658.tar.lz
nixlib-37455d156a813601a8eb324dc20b30f864963658.tar.xz
nixlib-37455d156a813601a8eb324dc20b30f864963658.tar.zst
nixlib-37455d156a813601a8eb324dc20b30f864963658.zip
arubaotp-seed-extractor: init at unstable-22-12-2022
Diffstat (limited to 'pkgs/tools/security/arubaotp-seed-extractor')
-rw-r--r--pkgs/tools/security/arubaotp-seed-extractor/default.nix46
1 files changed, 46 insertions, 0 deletions
diff --git a/pkgs/tools/security/arubaotp-seed-extractor/default.nix b/pkgs/tools/security/arubaotp-seed-extractor/default.nix
new file mode 100644
index 000000000000..a1ab0fd9f290
--- /dev/null
+++ b/pkgs/tools/security/arubaotp-seed-extractor/default.nix
@@ -0,0 +1,46 @@
+{ lib
+, python3Packages
+, fetchFromGitHub
+}:
+
+python3Packages.buildPythonApplication {
+  pname = "arubaotp-seed-extractor";
+  version = "unstable-22-12-2022";
+
+  src = fetchFromGitHub {
+    owner = "andry08";
+    repo = "ArubaOTP-seed-extractor";
+    rev = "534f78bb71594d5806fd2d7a8eade109b0e1d402";
+    hash = "sha256-1pv88OClskQOPtJaP7g0duXMe/X3M6Tk+ituZ9UxoIE=";
+  };
+
+  format = "other";
+
+  nativeBuildInputs = [
+    python3Packages.wrapPython
+  ];
+
+  pythonPath = with python3Packages; [
+    pycryptodome
+    pyotp
+    qrcode
+    requests
+  ];
+
+  installPhase = ''
+    libdir="$out/lib/${python3Packages.python.libPrefix}/site-packages/arubaotp-seed-extractor"
+    mkdir -p "$libdir"
+    cp scripts/* "$libdir"
+    chmod +x "$libdir/main.py"
+    wrapPythonProgramsIn "$libdir" "$pythonPath"
+    mkdir -p $out/bin
+    ln -s "$libdir/main.py" $out/bin/arubaotp-seed-extractor
+  '';
+
+  meta = with lib; {
+    homepage = "https://github.com/andry08/ArubaOTP-seed-extractor";
+    description = "Extract TOTP seed instead of using ArubaOTP app";
+    license = licenses.mit;
+    maintainers = with maintainers; [ fgaz ];
+  };
+}