mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
Merge pull request #133824 from WolfangAukang/pass2csv-init
pass2csv: init at 0.3.1
This commit is contained in:
commit
a64f319823
2 changed files with 32 additions and 0 deletions
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 ];
|
||||
};
|
||||
}
|
|
@ -25040,6 +25040,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