python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / misc / zk-shell / default.nix
blob9f6816f00dda21437dceea027f15580469243b31
1 { lib, fetchFromGitHub, python3Packages }:
3 python3Packages.buildPythonApplication rec {
4   pname = "zk-shell";
5   version = "1.0.0";
7   src = fetchFromGitHub {
8     owner = "rgs1";
9     repo = "zk_shell";
10     rev = "v${version}";
11     sha256 = "0zisvvlclsf4sdh7dpqcl1149xbxw6pi1aqcwjbqblgf8m4nm0c7";
12   };
14   propagatedBuildInputs = with python3Packages; [
15     ansi
16     kazoo
17     nose
18     six
19     tabulate
20     twitter
21   ];
23   # requires a running zookeeper, don't know how to fix that for the moment
24   doCheck = false;
26   meta = with lib; {
27     description = "A powerful & scriptable shell for Apache ZooKeeper";
28     homepage = "https://github.com/rgs1/zk_shell";
29     license = licenses.asl20;
30     maintainers = [ maintainers.mahe ];
31     platforms = platforms.all;
32   };