2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
fetchFromGitHub,
|
|
|
|
buildPythonPackage,
|
|
|
|
python,
|
|
|
|
meson,
|
|
|
|
ninja,
|
|
|
|
psutil,
|
|
|
|
pygobject3,
|
|
|
|
gtk3,
|
|
|
|
gobject-introspection,
|
|
|
|
xapp,
|
|
|
|
polkit,
|
|
|
|
gitUpdater,
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "xapp";
|
2024-04-21 15:54:59 +00:00
|
|
|
version = "22";
|
2022-12-02 08:20:57 +00:00
|
|
|
|
|
|
|
format = "other";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "linuxmint";
|
|
|
|
repo = "python-xapp";
|
2023-11-16 04:20:00 +00:00
|
|
|
rev = "refs/tags/master.mint${version}";
|
2024-04-21 15:54:59 +00:00
|
|
|
hash = "sha256-2Gx85y0ARu6EfDYAT9ZL154RH0R1HY78tm3rceODnZU=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-12-02 08:20:57 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
];
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
psutil
|
|
|
|
pygobject3
|
|
|
|
gtk3
|
|
|
|
gobject-introspection
|
2022-08-12 12:06:08 +00:00
|
|
|
xapp
|
2020-04-24 23:36:52 +00:00
|
|
|
polkit
|
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace "xapp/os.py" --replace "/usr/bin/pkexec" "${polkit}/bin/pkexec"
|
|
|
|
'';
|
|
|
|
|
2022-12-02 08:20:57 +00:00
|
|
|
postInstall = ''
|
|
|
|
# This is typically set by pipInstallHook/eggInstallHook,
|
|
|
|
# so we have to do so manually when using meson.
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/175227
|
|
|
|
export PYTHONPATH=$out/${python.sitePackages}:$PYTHONPATH
|
|
|
|
'';
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "xapp" ];
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
passthru.updateScript = gitUpdater { ignoredVersions = "^master.*"; };
|
2023-07-15 17:15:38 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://github.com/linuxmint/python-xapp";
|
|
|
|
description = "Cross-desktop libraries and common resources for python";
|
|
|
|
license = licenses.lgpl2;
|
|
|
|
platforms = platforms.linux;
|
2022-11-02 22:02:43 +00:00
|
|
|
maintainers = teams.cinnamon.members;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|