about summary refs log tree commit diff
path: root/pkgs/tools/security/pass2csv
diff options
context:
space:
mode:
authorP. R. d. O <d.ol.rod@protonmail.com>2021-08-14 15:11:11 -0600
committerP. R. d. O <d.ol.rod@protonmail.com>2021-08-14 15:11:11 -0600
commit26a8f6eaf46f573c95ccb7ec4e3e4da99cdc351f (patch)
treef0d38781c6253a761b00e1e3153c267dece2f033 /pkgs/tools/security/pass2csv
parent196138ea6b9803a42c6720f421db023b953926d2 (diff)
pass2csv: init at 0.3.1
Diffstat (limited to 'pkgs/tools/security/pass2csv')
-rw-r--r--pkgs/tools/security/pass2csv/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/tools/security/pass2csv/default.nix b/pkgs/tools/security/pass2csv/default.nix
new file mode 100644
index 0000000000000..50de7dc7e8212
--- /dev/null
+++ b/pkgs/tools/security/pass2csv/default.nix
@@ -0,0 +1,30 @@
+{ buildPythonApplication
+, fetchPypi
+, lib
+, python-gnupg
+}:
+
+buildPythonApplication rec {
+  pname = "pass2csv";
+  version = "0.3.1";
+  format = "pyproject";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "sha256-qY094A5F7W2exGcsS9AJuO5RrBcAn0cCrJquOc6zGZM=";
+  };
+
+  propagatedBuildInputs = [
+    python-gnupg
+  ];
+
+  # Project has no tests.
+  doCheck = false;
+
+  meta = with lib; {
+    description = "Export pass(1), \"the standard unix password manager\", to CSV";
+    homepage = "https://github.com/reinefjord/pass2csv";
+    license = licenses.mit;
+    maintainers = with maintainers; [ wolfangaukang ];
+  };
+}