lol

python-pywebkitgtk: New package, version 1.1.8.

This is needed as a build dependency for miro.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>

aszlig aa018de6 246b59ec

+21
+21
pkgs/top-level/python-packages.nix
··· 5205 5205 }); 5206 5206 5207 5207 5208 + pywebkitgtk = stdenv.mkDerivation rec { 5209 + name = "pywebkitgtk-${version}"; 5210 + version = "1.1.8"; 5211 + 5212 + src = fetchurl { 5213 + url = "http://pywebkitgtk.googlecode.com/files/${name}.tar.bz2"; 5214 + sha256 = "1svlwyl61rvbqbcbalkg6pbf38yjyv7qkq9sx4x35yk69lscaac2"; 5215 + }; 5216 + 5217 + buildInputs = with pkgs; [ 5218 + pkgconfig python gtk2 pygtk libxml2 libxslt libsoup webkit_gtk2 icu 5219 + ]; 5220 + 5221 + meta = { 5222 + homepage = "https://code.google.com/p/pywebkitgtk/"; 5223 + description = "Python bindings for the WebKit GTK+ port"; 5224 + license = stdenv.lib.licenses.lgpl2Plus; 5225 + }; 5226 + }; 5227 + 5228 + 5208 5229 pyxattr = buildPythonPackage (rec { 5209 5230 name = "pyxattr-0.5.1"; 5210 5231