zsh-history-to-fish: init at 0.3.0

This commit is contained in:
Alan Pearce 2023-08-09 06:56:26 +02:00
parent 0632b86af6
commit 4ebf6f397d
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{ lib
, fetchPypi
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "zsh-history-to-fish";
version = "0.3.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-expPuffZttyXNRreplPC5Ee/jfWAyOnmjTIMXONtrnw=";
};
propagatedBuildInputs = with python3.pkgs; [
click
];
# upstream has no tests
doCheck = false;
pythonImportsCheck = [
"zsh_history_to_fish"
];
meta = with lib; {
description = "Bring your ZSH history to Fish shell";
homepage = "https://github.com/rsalmei/zsh-history-to-fish";
license = licenses.mit;
maintainers = with maintainers; [ alanpearce ];
};
}

View file

@ -2022,6 +2022,8 @@ with pkgs;
yarn-lock-converter = callPackage ../tools/package-management/yarn-lock-converter { };
zsh-history-to-fish = callPackage ../tools/misc/zsh-history-to-fish { };
archi = callPackage ../tools/misc/archi { };
breitbandmessung = callPackage ../applications/networking/breitbandmessung { };