From f2625ce4446d3a7587b99762fd4e22cb4352c9df Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Tue, 6 Sep 2022 21:46:02 +0200 Subject: [PATCH 1/2] pympress: 1.7.0 -> 1.7.2 --- pkgs/applications/office/pympress/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/office/pympress/default.nix b/pkgs/applications/office/pympress/default.nix index 9727625f710b..4d5f174f64a0 100644 --- a/pkgs/applications/office/pympress/default.nix +++ b/pkgs/applications/office/pympress/default.nix @@ -12,11 +12,11 @@ python3Packages.buildPythonApplication rec { pname = "pympress"; - version = "1.7.0"; + version = "1.7.2"; src = python3Packages.fetchPypi { inherit pname version; - sha256 = "sha256-AxH0PyAWYEEIqQAx9gG2eYyXMijLZGZqXkRhld32ieE="; + sha256 = "LFUzrGHr8jmUqoIcKokC0gNDVmW1EUZlj9eI+GDycvI="; }; nativeBuildInputs = [ From 648bcc8f4288d5526e4d347c4ef404ea51c1d8f6 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Tue, 6 Sep 2022 22:38:15 +0200 Subject: [PATCH 2/2] pympress: Move gobject-introspection to nativeBuildInputs - Previously the software would fail to run with an error showing that it couldn't find gobject-introspection typelib files for GTK3 - By adding gobject-introspection to nativeBuildInputs, the gi typelib path is set so that we have all of the typelibs we need Co-authored-by: Skyler Grey --- pkgs/applications/office/pympress/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/office/pympress/default.nix b/pkgs/applications/office/pympress/default.nix index 4d5f174f64a0..1343f2e8d392 100644 --- a/pkgs/applications/office/pympress/default.nix +++ b/pkgs/applications/office/pympress/default.nix @@ -21,11 +21,11 @@ python3Packages.buildPythonApplication rec { nativeBuildInputs = [ wrapGAppsHook + gobject-introspection ]; buildInputs = [ gtk3 - gobject-introspection poppler_gi ] ++ lib.optional withGstreamer libcanberra-gtk3;