zk-shell: switch to python3, cleanup

+16 -11
+16 -11
pkgs/applications/misc/zk-shell/default.nix
··· 1 - { lib, fetchFromGitHub, pythonPackages }: 2 3 - pythonPackages.buildPythonApplication rec { 4 version = "1.0.0"; 5 - name = "zk-shell-" + version; 6 7 src = fetchFromGitHub { 8 owner = "rgs1"; ··· 11 sha256 = "0zisvvlclsf4sdh7dpqcl1149xbxw6pi1aqcwjbqblgf8m4nm0c7"; 12 }; 13 14 - propagatedBuildInputs = (with pythonPackages; [ 15 - ansi kazoo nose six tabulate twitter 16 - ]); 17 18 - #requires a running zookeeper, don't know how to fix that for the moment 19 doCheck = false; 20 21 - meta = { 22 description = "A powerful & scriptable shell for Apache ZooKeeper"; 23 homepage = "https://github.com/rgs1/zk_shell"; 24 - license = lib.licenses.asl20; 25 - maintainers = [ lib.maintainers.mahe ]; 26 - platforms = lib.platforms.all; 27 }; 28 }
··· 1 + { lib, fetchFromGitHub, python3Packages }: 2 3 + python3Packages.buildPythonApplication rec { 4 + pname = "zk-shell"; 5 version = "1.0.0"; 6 7 src = fetchFromGitHub { 8 owner = "rgs1"; ··· 11 sha256 = "0zisvvlclsf4sdh7dpqcl1149xbxw6pi1aqcwjbqblgf8m4nm0c7"; 12 }; 13 14 + propagatedBuildInputs = with python3Packages; [ 15 + ansi 16 + kazoo 17 + nose 18 + six 19 + tabulate 20 + twitter 21 + ]; 22 23 + # requires a running zookeeper, don't know how to fix that for the moment 24 doCheck = false; 25 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 }; 33 }