2021-08-14 22:11:11 +01:00
|
|
|
{ buildPythonApplication
|
|
|
|
, fetchPypi
|
|
|
|
, lib
|
|
|
|
, python-gnupg
|
2022-09-19 03:01:18 +01:00
|
|
|
, setuptools
|
2021-08-14 22:11:11 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "pass2csv";
|
2022-11-16 18:30:43 +00:00
|
|
|
version = "1.0.0";
|
2021-08-14 22:11:11 +01:00
|
|
|
format = "pyproject";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-11-16 18:30:43 +00:00
|
|
|
sha256 = "sha256-a/PQl/nqdj9xOM2hfAIiLuGy5F4KmEWFJihZ4gilaJw=";
|
2021-08-14 22:11:11 +01:00
|
|
|
};
|
|
|
|
|
2022-09-19 03:01:18 +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 ];
|
|
|
|
};
|
|
|
|
}
|