mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-12 15:14:13 +00:00
Merge pull request #133824 from WolfangAukang/pass2csv-init
pass2csv: init at 0.3.1
This commit is contained in:
commit
a64f319823
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 {};
|
musikcube = callPackage ../applications/audio/musikcube {};
|
||||||
|
|
||||||
|
pass2csv = python3Packages.callPackage ../tools/security/pass2csv {};
|
||||||
|
|
||||||
pass-secret-service = callPackage ../applications/misc/pass-secret-service { };
|
pass-secret-service = callPackage ../applications/misc/pass-secret-service { };
|
||||||
|
|
||||||
pinboard = with python3Packages; toPythonApplication pinboard;
|
pinboard = with python3Packages; toPythonApplication pinboard;
|
||||||
|
Loading…
Reference in New Issue
Block a user