2019-05-18 21:19:31 +00:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
|
|
|
, pkgconfig
|
|
|
|
, gnome3
|
|
|
|
, gtk3
|
|
|
|
, wrapGAppsHook
|
|
|
|
, gobject-introspection
|
|
|
|
, itstool
|
|
|
|
, libxml2
|
|
|
|
, python3
|
|
|
|
, at-spi2-core
|
|
|
|
, dbus
|
|
|
|
, gettext
|
|
|
|
, libwnck3
|
|
|
|
, adwaita-icon-theme
|
|
|
|
}:
|
2016-09-18 19:35:23 +00:00
|
|
|
|
2019-05-18 21:19:31 +00:00
|
|
|
python3.pkgs.buildPythonApplication rec {
|
2020-08-09 12:17:55 +00:00
|
|
|
pname = "accerciser";
|
|
|
|
version = "3.36.3";
|
2016-09-18 19:35:23 +00:00
|
|
|
|
2019-05-18 21:19:31 +00:00
|
|
|
format = "other";
|
|
|
|
|
2018-02-21 01:57:59 +00:00
|
|
|
src = fetchurl {
|
2020-08-09 12:17:55 +00:00
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
|
|
sha256 = "0zfhmpaqqwm89k8p4apq4la191icjvqh0097p5aig3yhy87fahp9";
|
2018-02-21 01:57:59 +00:00
|
|
|
};
|
|
|
|
|
2018-03-21 09:57:15 +00:00
|
|
|
nativeBuildInputs = [
|
2019-05-18 21:19:31 +00:00
|
|
|
gettext
|
2018-12-02 11:41:15 +00:00
|
|
|
gobject-introspection # For setup hook
|
2019-05-18 21:19:31 +00:00
|
|
|
itstool
|
|
|
|
libxml2
|
|
|
|
pkgconfig
|
|
|
|
dbus
|
|
|
|
wrapGAppsHook
|
2018-03-21 09:57:15 +00:00
|
|
|
];
|
2019-05-18 21:19:31 +00:00
|
|
|
|
2016-09-18 19:35:23 +00:00
|
|
|
buildInputs = [
|
2019-05-18 21:19:31 +00:00
|
|
|
adwaita-icon-theme
|
|
|
|
at-spi2-core
|
|
|
|
gtk3
|
|
|
|
libwnck3
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
|
|
ipython
|
|
|
|
pyatspi
|
|
|
|
pycairo
|
|
|
|
pygobject3
|
2019-10-10 21:38:41 +00:00
|
|
|
setuptools
|
2019-05-18 21:19:31 +00:00
|
|
|
xlib
|
2016-09-18 19:35:23 +00:00
|
|
|
];
|
|
|
|
|
2019-05-18 21:19:31 +00:00
|
|
|
# Strict deps breaks accerciser
|
|
|
|
# and https://github.com/NixOS/nixpkgs/issues/56943
|
|
|
|
strictDeps = false;
|
2016-09-18 19:35:23 +00:00
|
|
|
|
2018-02-21 01:57:59 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = "accerciser";
|
|
|
|
attrPath = "gnome3.accerciser";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-09-18 19:35:23 +00:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://wiki.gnome.org/Apps/Accerciser";
|
2016-09-18 19:35:23 +00:00
|
|
|
description = "Interactive Python accessibility explorer";
|
2020-04-01 12:40:51 +00:00
|
|
|
maintainers = teams.gnome.members;
|
2016-09-18 19:35:23 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|