mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
pass2csv: init at 0.3.1
This commit is contained in:
parent
196138ea6b
commit
26a8f6eaf4
30
pkgs/tools/security/pass2csv/default.nix
Normal file
30
pkgs/tools/security/pass2csv/default.nix
Normal file
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -25032,6 +25032,8 @@ with pkgs;
|
|||
|
||||
musikcube = callPackage ../applications/audio/musikcube {};
|
||||
|
||||
pass2csv = python3Packages.callPackage ../tools/security/pass2csv {};
|
||||
|
||||
pass-secret-service = callPackage ../applications/misc/pass-secret-service { };
|
||||
|
||||
pinboard = with python3Packages; toPythonApplication pinboard;
|
||||
|
|
Loading…
Reference in a new issue