Merge pull request #248086 from alanpearce/zsh-history-to-fish

zsh-history-to-fish: init at 0.3.0

authored by

OTABI Tomoya and committed by
GitHub
404d0079 96a52e8e

+35
+33
pkgs/tools/misc/zsh-history-to-fish/default.nix
··· 1 + { lib 2 + , fetchPypi 3 + , python3 4 + }: 5 + 6 + python3.pkgs.buildPythonApplication rec { 7 + pname = "zsh-history-to-fish"; 8 + version = "0.3.0"; 9 + format = "setuptools"; 10 + 11 + src = fetchPypi { 12 + inherit pname version; 13 + hash = "sha256-expPuffZttyXNRreplPC5Ee/jfWAyOnmjTIMXONtrnw="; 14 + }; 15 + 16 + propagatedBuildInputs = with python3.pkgs; [ 17 + click 18 + ]; 19 + 20 + # upstream has no tests 21 + doCheck = false; 22 + 23 + pythonImportsCheck = [ 24 + "zsh_history_to_fish" 25 + ]; 26 + 27 + meta = with lib; { 28 + description = "Bring your ZSH history to Fish shell"; 29 + homepage = "https://github.com/rsalmei/zsh-history-to-fish"; 30 + license = licenses.mit; 31 + maintainers = with maintainers; [ alanpearce ]; 32 + }; 33 + }
+2
pkgs/top-level/all-packages.nix
··· 2018 2018 2019 2019 yarn-lock-converter = callPackage ../tools/package-management/yarn-lock-converter { }; 2020 2020 2021 + zsh-history-to-fish = callPackage ../tools/misc/zsh-history-to-fish { }; 2022 + 2021 2023 archi = callPackage ../tools/misc/archi { }; 2022 2024 2023 2025 breitbandmessung = callPackage ../applications/networking/breitbandmessung { };