summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyatspi/default.nix
blob: 012c8c42d6ab66d19707a10c05449bb1dc56624b (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
28
{ stdenv, fetchurl, pkgconfig, at_spi2_core, pythonPackages }:

stdenv.mkDerivation rec {
  version = "2.18.0";
  name = "pyatspi-${version}";

  src = fetchurl {
    url = "mirror://gnome/sources/pyatspi/2.18/${name}.tar.xz";
    sha256 = "0imbyk2v6c11da7pkwz91313pkkldxs8zfg81zb2ql6h0nnh6vzq";
  };

  broken = true;

  buildInputs = [
    at_spi2_core
    pkgconfig
    pythonPackages.python
    pythonPackages.pygobject3
  ];

  meta = with stdenv.lib; {
    description = "Python 3 bindings for at-spi";
    homepage = http://www.linuxfoundation.org/en/AT-SPI_on_D-Bus;
    license = licenses.gpl2;
    maintainers = with maintainers; [ jgeerds ];
    platforms = with platforms; unix;
  };
}