summary refs log tree commit diff
path: root/pkgs/development/python-modules/libsexy/default.nix
blob: 03797575a83effc79e180f2160986fb7d1e1bf03 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, fetchurl, buildPythonPackage, libsexy, pkgconfig, libxml2, pygtk, pango, gtk2, glib, python }:

buildPythonPackage rec {
  pname = "libsexy";
  version = "0.1.9";
  format = "other";

  src = fetchurl {
    url = "http://releases.chipx86.com/libsexy/sexy-python/sexy-python-${version}.tar.gz";
    sha256 = "05bgcsxwkp63rlr8wg6znd46cfbhrzc5wh70jabsi654pxxjb39d";
  };

  nativeBuildInputs = [ pkgconfig pygtk ];

  propagatedBuildInputs = [
    pygtk libsexy glib pango libxml2
  ];

  postInstall = ''
    ln -s $out/${python.sitePackages}/gtk-2.0/* $out/${python.sitePackages}
  '';

  meta = {
    description = "Python libsexy bindings";
    platforms = stdenv.lib.platforms.linux;
  };
}