Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ buildPythonApplication 2, fetchPypi 3, lib 4, python-gnupg 5, setuptools 6}: 7 8buildPythonApplication rec { 9 pname = "pass2csv"; 10 version = "1.0.0"; 11 format = "pyproject"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "sha256-a/PQl/nqdj9xOM2hfAIiLuGy5F4KmEWFJihZ4gilaJw="; 16 }; 17 18 nativeBuildInputs = [ 19 setuptools 20 ]; 21 22 propagatedBuildInputs = [ 23 python-gnupg 24 ]; 25 26 # Project has no tests. 27 doCheck = false; 28 29 meta = with lib; { 30 description = "Export pass(1), \"the standard unix password manager\", to CSV"; 31 homepage = "https://github.com/reinefjord/pass2csv"; 32 license = licenses.mit; 33 maintainers = with maintainers; [ wolfangaukang ]; 34 }; 35}