zk-shell: init at 1.0.0
This commit is contained in:
parent
9615afa04b
commit
725544fd9e
|
@ -0,0 +1,28 @@
|
||||||
|
{ stdenv, buildPythonApplication, fetchFromGitHub, pythonPackages }:
|
||||||
|
|
||||||
|
buildPythonApplication rec {
|
||||||
|
version = "1.0.0";
|
||||||
|
name = "zk-shell-" + version;
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "rgs1";
|
||||||
|
repo = "zk_shell";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0zisvvlclsf4sdh7dpqcl1149xbxw6pi1aqcwjbqblgf8m4nm0c7";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = (with pythonPackages; [
|
||||||
|
ansi kazoo nose six tabulate twitter readline
|
||||||
|
]);
|
||||||
|
|
||||||
|
#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;
|
||||||
|
license = stdenv.lib.licenses.apache2;
|
||||||
|
maintainers = [ stdenv.lib.maintainers.mahe ];
|
||||||
|
platforms = stdenv.lib.platforms.all;
|
||||||
|
};
|
||||||
|
}
|
|
@ -17335,6 +17335,10 @@ in
|
||||||
|
|
||||||
zimg = callPackage ../development/libraries/zimg { };
|
zimg = callPackage ../development/libraries/zimg { };
|
||||||
|
|
||||||
|
zk-shell = callPackage ../applications/misc/zk-shell {
|
||||||
|
inherit (pythonPackages) buildPythonApplication;
|
||||||
|
};
|
||||||
|
|
||||||
zuki-themes = callPackage ../misc/themes/zuki { };
|
zuki-themes = callPackage ../misc/themes/zuki { };
|
||||||
|
|
||||||
zoom-us = qt55.callPackage ../applications/networking/instant-messengers/zoom-us {};
|
zoom-us = qt55.callPackage ../applications/networking/instant-messengers/zoom-us {};
|
||||||
|
|
Loading…
Reference in New Issue