python-pywebkitgtk: New package, version 1.1.8.

This is needed as a build dependency for miro.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2013-10-28 19:12:52 +01:00
parent 246b59ec11
commit aa018de67d
No known key found for this signature in database
GPG Key ID: D0EBD0EC8C2DC961

View File

@ -5205,6 +5205,27 @@ pythonPackages = modules // import ./python-packages-generated.nix {
});
pywebkitgtk = stdenv.mkDerivation rec {
name = "pywebkitgtk-${version}";
version = "1.1.8";
src = fetchurl {
url = "http://pywebkitgtk.googlecode.com/files/${name}.tar.bz2";
sha256 = "1svlwyl61rvbqbcbalkg6pbf38yjyv7qkq9sx4x35yk69lscaac2";
};
buildInputs = with pkgs; [
pkgconfig python gtk2 pygtk libxml2 libxslt libsoup webkit_gtk2 icu
];
meta = {
homepage = "https://code.google.com/p/pywebkitgtk/";
description = "Python bindings for the WebKit GTK+ port";
license = stdenv.lib.licenses.lgpl2Plus;
};
};
pyxattr = buildPythonPackage (rec {
name = "pyxattr-0.5.1";