tryton: 7.2.4 -> 7.2.5 (#339773)

This commit is contained in:
OTABI Tomoya 2024-09-15 11:37:30 +09:00 committed by GitHub
commit 2a19dcb80a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19,22 +19,23 @@
python3Packages.buildPythonApplication rec {
pname = "tryton";
version = "7.2.4";
disabled = !python3Packages.isPy3k;
version = "7.2.5";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-LYebXgAvIG3pUF7GpRjeQvP6S83yPjPO/lZg9r0X+Kc=";
hash = "sha256-U6hA6TuIMDTFAZUic60A5IKr/LKxKZEgiTIhkLlTJSw=";
};
build-system = [ python3Packages.setuptools ];
nativeBuildInputs = [
pkg-config
gobject-introspection
wrapGAppsHook3
];
propagatedBuildInputs = with python3Packages; [
dependencies = with python3Packages; [
python-dateutil
pygobject3
goocalendar
@ -55,8 +56,16 @@ python3Packages.buildPythonApplication rec {
pango
];
dontWrapGApps = true;
preFixup = ''
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
'';
strictDeps = false;
pythonImportsCheck = [ "tryton" ];
doCheck = false;
meta = with lib; {