Unverified Commit 1bc559ed authored by natsukium's avatar natsukium
Browse files

tryton: build with pypaBuildHook

parent 26226abe
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -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; {