python-namebench: enable GUI support

tkinter apparently doesn't exist for pypy, hence it is disabled for that
interpreter.
This commit is contained in:
Bjørn Forsman 2015-07-04 20:08:02 +02:00
parent 8e4edf52dc
commit a7b6e152bb

View File

@ -7696,18 +7696,18 @@ let
namebench = buildPythonPackage (rec { namebench = buildPythonPackage (rec {
name = "namebench-1.0.5"; name = "namebench-1.0.5";
disabled = isPy3k; disabled = isPy3k || isPyPy;
src = pkgs.fetchurl { src = pkgs.fetchurl {
url = "http://namebench.googlecode.com/files/${name}.tgz"; url = "http://namebench.googlecode.com/files/${name}.tgz";
sha256 = "6cbde35ce94d1f31e7d48f5d8eec13238b4dbc505675a33f1e183e600c1482c3"; sha256 = "6cbde35ce94d1f31e7d48f5d8eec13238b4dbc505675a33f1e183e600c1482c3";
}; };
# No support of GUI yet.
# error: invalid command 'test' # error: invalid command 'test'
doCheck = false; doCheck = false;
propagatedBuildInputs = [ self.tkinter ];
# namebench expects to be run from its own source tree (it uses relative # namebench expects to be run from its own source tree (it uses relative
# paths to various resources), make it work. # paths to various resources), make it work.
postInstall = '' postInstall = ''