Unverified Commit 2a19dcb8 authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

tryton: 7.2.4 -> 7.2.5 (#339773)

parents dcf70734 466af1a6
Loading
Loading
Loading
Loading
+14 −5
Original line number Diff line number Diff line
@@ -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; {