Merge pull request #133824 from WolfangAukang/pass2csv-init

pass2csv: init at 0.3.1
This commit is contained in:
Sandro 2021-08-15 01:30:54 +02:00 committed by GitHub
commit a64f319823
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 32 additions and 0 deletions

View 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 ];
};
}

View file

@ -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;