nixpkgs/pkgs/applications/misc/zk-shell/default.nix

29 lines
757 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, pythonPackages }:
2016-10-14 05:45:33 +00:00
2016-10-23 14:48:20 +00:00
pythonPackages.buildPythonApplication rec {
2016-10-14 05:45:33 +00:00
version = "1.0.0";
name = "zk-shell-" + version;
src = fetchFromGitHub {
owner = "rgs1";
repo = "zk_shell";
rev = "v${version}";
sha256 = "0zisvvlclsf4sdh7dpqcl1149xbxw6pi1aqcwjbqblgf8m4nm0c7";
};
propagatedBuildInputs = (with pythonPackages; [
2016-10-23 06:57:37 +00:00
ansi kazoo nose six tabulate twitter
2016-10-14 05:45:33 +00:00
]);
#requires a running zookeeper, don't know how to fix that for the moment
doCheck = false;
meta = {
description = "A powerful & scriptable shell for Apache ZooKeeper";
homepage = "https://github.com/rgs1/zk_shell";
2021-01-15 05:42:41 +00:00
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.mahe ];
platforms = lib.platforms.all;
2016-10-14 05:45:33 +00:00
};
}