summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/3.20/apps/accerciser/default.nix
blob: a2813e0581b358cda63a520142ffc3a4efeeb412 (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, gnome3, gtk3, wrapGAppsHook
, itstool, libxml2, python3, python3Packages, pyatspi, at_spi2_core
, dbus, intltool, libwnck3 }:

stdenv.mkDerivation rec {
  name = "accerciser-3.14.0";

  src = fetchurl {
    url = "mirror://gnome/sources/accerciser/3.14/${name}.tar.xz";
    sha256 = "0x05gpajpcs01g7m34g6fxz8122cf9kx3k0lchwl34jy8xfr39gm";
  };

  buildInputs = [
    pkgconfig gtk3 wrapGAppsHook itstool libxml2 python3 pyatspi
    python3Packages.pygobject3 python3Packages.ipython
    at_spi2_core dbus intltool libwnck3 gnome3.defaultIconTheme
  ];

  wrapPrefixVariables = [ "PYTHONPATH" ];

  meta = with stdenv.lib; {
    homepage = https://wiki.gnome.org/Apps/Accerciser;
    description = "Interactive Python accessibility explorer";
    maintainers = gnome3.maintainers;
    license = licenses.bsd3;
    platforms = platforms.linux;
  };
}