Unverified Commit 6da9cd1f authored by Emily's avatar Emily Committed by GitHub
Browse files

Merge pull request #333725 from Sigmanificient/zk-shell

zk-shell: drop
parents c4e73af4 09e84d4c
Loading
Loading
Loading
Loading
+0 −34
Original line number Diff line number Diff line
{ lib, fetchFromGitHub, python3Packages }:

python3Packages.buildPythonApplication rec {
  pname = "zk-shell";
  version = "1.0.0";

  src = fetchFromGitHub {
    owner = "rgs1";
    repo = "zk_shell";
    rev = "v${version}";
    sha256 = "0zisvvlclsf4sdh7dpqcl1149xbxw6pi1aqcwjbqblgf8m4nm0c7";
  };

  propagatedBuildInputs = with python3Packages; [
    ansi
    kazoo
    nose
    six
    tabulate
    twitter
  ];

  # requires a running zookeeper, don't know how to fix that for the moment
  doCheck = false;

  meta = with lib; {
    description = "Powerful & scriptable shell for Apache ZooKeeper";
    mainProgram = "zk-shell";
    homepage = "https://github.com/rgs1/zk_shell";
    license = licenses.asl20;
    maintainers = [ maintainers.mahe ];
    platforms = platforms.all;
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -1608,6 +1608,7 @@ mapAliases ({
  zfsStable = zfs; # Added 2024-02-26
  zfsUnstable = zfs_unstable; # Added 2024-02-26
  zinc = zincsearch; # Added 2023-05-28
  zk-shell = throw "zk-shell has been removed as it was broken and unmaintained"; # Added 2024-08-10
  zkg = throw "'zkg' has been replaced by 'zeek'";
  zq = zed.overrideAttrs (old: { meta = old.meta // { mainProgram = "zq"; }; }); # Added 2023-02-06
  zz = throw "'zz' has been removed because it was archived in 2022 and had no maintainer"; # added 2024-05-10
+0 −2
Original line number Diff line number Diff line
@@ -39667,8 +39667,6 @@ with pkgs;
  wtf = callPackage ../applications/misc/wtf { };
  zk-shell = callPackage ../applications/misc/zk-shell { };
  tora = libsForQt5.callPackage ../development/tools/tora { };
  xrq = callPackage ../applications/misc/xrq { };