tryton: build with pypaBuildHook

This commit is contained in:
natsukium 2024-09-14 10:31:43 +09:00
parent 26226abeed
commit 1bc559ed43
No known key found for this signature in database
GPG Key ID: 9EA45A31DB994C53

View File

@ -20,21 +20,22 @@
python3Packages.buildPythonApplication rec {
pname = "tryton";
version = "7.2.5";
disabled = !python3Packages.isPy3k;
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-U6hA6TuIMDTFAZUic60A5IKr/LKxKZEgiTIhkLlTJSw=";
};
build-system = [ python3Packages.setuptools ];
nativeBuildInputs = [
pkg-config
gobject-introspection
wrapGAppsHook3
];
propagatedBuildInputs = with python3Packages; [
dependencies = with python3Packages; [
python-dateutil
pygobject3
goocalendar
@ -57,6 +58,8 @@ python3Packages.buildPythonApplication rec {
strictDeps = false;
pythonImportsCheck = [ "tryton" ];
doCheck = false;
meta = with lib; {