Merge pull request #248337 from NixOS/backport-248086-to-release-23.05

[Backport release-23.05] zsh-history-to-fish: init at 0.3.0
This commit is contained in:
Weijia Wang
2023-08-13 23:54:54 +02:00
committed by GitHub
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

@@ -1797,6 +1797,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 { };