summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyatspi/default.nix
blob: 6192f94445f39362793a4f8e57d8c8608f765d81 (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
29
{ stdenv, fetchurl, pkgconfig, at-spi2-core, pythonPackages }:

stdenv.mkDerivation rec {
  pname = "pyatspi";
  version = "2.18.0";
  name = "${pname}-${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;
  };
}