nixpkgs/pkgs/desktops/gnome-3/apps/accerciser/default.nix

74 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv
, fetchurl
, pkgconfig
, gnome3
, gtk3
, wrapGAppsHook
, gobject-introspection
, itstool
, libxml2
, python3
, at-spi2-core
, dbus
, gettext
, libwnck3
, adwaita-icon-theme
}:
python3.pkgs.buildPythonApplication rec {
name = "accerciser-${version}";
2020-03-08 10:42:50 +00:00
version = "3.36.0";
format = "other";
src = fetchurl {
url = "mirror://gnome/sources/accerciser/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
2020-03-08 10:42:50 +00:00
sha256 = "1iwi7mnayw1f90s439flh0zkgmj4qx10dzgj38nd5f3wvqmhabk3";
};
2018-03-21 09:57:15 +00:00
nativeBuildInputs = [
gettext
gobject-introspection # For setup hook
itstool
libxml2
pkgconfig
dbus
wrapGAppsHook
2018-03-21 09:57:15 +00:00
];
buildInputs = [
adwaita-icon-theme
at-spi2-core
gtk3
libwnck3
];
propagatedBuildInputs = with python3.pkgs; [
ipython
pyatspi
pycairo
pygobject3
setuptools
xlib
];
# Strict deps breaks accerciser
# and https://github.com/NixOS/nixpkgs/issues/56943
strictDeps = false;
passthru = {
updateScript = gnome3.updateScript {
packageName = "accerciser";
attrPath = "gnome3.accerciser";
};
};
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;
};
}