2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2019-05-18 21:19:31 +00:00
|
|
|
, fetchurl
|
2021-01-17 02:21:50 +00:00
|
|
|
, pkg-config
|
2021-05-07 21:18:14 +00:00
|
|
|
, gnome
|
2019-05-18 21:19:31 +00:00
|
|
|
, gtk3
|
|
|
|
, wrapGAppsHook
|
|
|
|
, gobject-introspection
|
|
|
|
, itstool
|
|
|
|
, libxml2
|
|
|
|
, python3
|
|
|
|
, at-spi2-core
|
|
|
|
, dbus
|
|
|
|
, gettext
|
|
|
|
, libwnck3
|
|
|
|
, adwaita-icon-theme
|
|
|
|
}:
|
2016-09-18 19:35:23 +00:00
|
|
|
|
2020-08-21 17:25:18 +00:00
|
|
|
python3.pkgs.buildPythonApplication rec {
|
2020-08-09 12:17:55 +00:00
|
|
|
pname = "accerciser";
|
2020-08-21 17:25:18 +00:00
|
|
|
version = "3.38.0";
|
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 {
|
2021-01-15 13:21:58 +00:00
|
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2020-08-21 17:25:18 +00:00
|
|
|
sha256 = "0fd9vv2abd2if2qj4nlfy7mpd7rc4sx18zhmxd5ijlnfhkpggbp5";
|
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
|
2021-01-17 02:21:50 +00:00
|
|
|
pkg-config
|
2019-05-18 21:19:31 +00:00
|
|
|
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 = {
|
2021-05-07 21:18:14 +00:00
|
|
|
updateScript = gnome.updateScript {
|
2018-02-21 01:57:59 +00:00
|
|
|
packageName = "accerciser";
|
2021-05-07 21:18:14 +00:00
|
|
|
attrPath = "gnome.accerciser";
|
2021-03-20 23:57:24 +00:00
|
|
|
versionPolicy = "odd-unstable";
|
2018-02-21 01:57:59 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with 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;
|
|
|
|
};
|
|
|
|
}
|