lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

pass2csv: init at 0.3.1

+32
+30
pkgs/tools/security/pass2csv/default.nix
··· 1 + { buildPythonApplication 2 + , fetchPypi 3 + , lib 4 + , python-gnupg 5 + }: 6 + 7 + buildPythonApplication rec { 8 + pname = "pass2csv"; 9 + version = "0.3.1"; 10 + format = "pyproject"; 11 + 12 + src = fetchPypi { 13 + inherit pname version; 14 + sha256 = "sha256-qY094A5F7W2exGcsS9AJuO5RrBcAn0cCrJquOc6zGZM="; 15 + }; 16 + 17 + propagatedBuildInputs = [ 18 + python-gnupg 19 + ]; 20 + 21 + # Project has no tests. 22 + doCheck = false; 23 + 24 + meta = with lib; { 25 + description = "Export pass(1), \"the standard unix password manager\", to CSV"; 26 + homepage = "https://github.com/reinefjord/pass2csv"; 27 + license = licenses.mit; 28 + maintainers = with maintainers; [ wolfangaukang ]; 29 + }; 30 + }
+2
pkgs/top-level/all-packages.nix
··· 25032 25032 25033 25033 musikcube = callPackage ../applications/audio/musikcube {}; 25034 25034 25035 + pass2csv = python3Packages.callPackage ../tools/security/pass2csv {}; 25036 + 25035 25037 pass-secret-service = callPackage ../applications/misc/pass-secret-service { }; 25036 25038 25037 25039 pinboard = with python3Packages; toPythonApplication pinboard;