3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/security/pass2csv/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
700 B
Nix
Raw Normal View History

2021-08-14 22:11:11 +01:00
{ buildPythonApplication
, fetchPypi
, lib
, python-gnupg
, setuptools
2021-08-14 22:11:11 +01:00
}:
buildPythonApplication rec {
pname = "pass2csv";
2022-01-20 21:07:19 +00:00
version = "0.3.2";
2021-08-14 22:11:11 +01:00
format = "pyproject";
src = fetchPypi {
inherit pname version;
2022-01-20 21:07:19 +00:00
sha256 = "03a11bd0b0905737f4adb21d87aa1653d84cc1d9b5dcfdfb8a29092245d65db8";
2021-08-14 22:11:11 +01:00
};
nativeBuildInputs = [
setuptools
];
2021-08-14 22:11:11 +01:00
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 ];
};
}