gramps: move to pkgs/by-name

This commit is contained in:
TomaSajt
2025-01-15 16:49:03 +01:00
parent 00961e65d9
commit 0431d8684e
4 changed files with 8 additions and 12 deletions
@@ -2,7 +2,7 @@
lib,
fetchFromGitHub,
gtk3,
pythonPackages,
python3Packages,
glibcLocales,
intltool,
gexiv2,
@@ -21,7 +21,7 @@
}:
let
inherit (pythonPackages) buildPythonApplication pythonOlder;
inherit (python3Packages) buildPythonApplication pythonOlder;
in
buildPythonApplication rec {
version = "5.2.3";
@@ -49,15 +49,15 @@ buildPythonApplication rec {
intltool
gettext
gobject-introspection
pythonPackages.setuptools
python3Packages.setuptools
];
nativeCheckInputs = [
glibcLocales
pythonPackages.unittestCheckHook
pythonPackages.jsonschema
pythonPackages.mock
pythonPackages.lxml
python3Packages.unittestCheckHook
python3Packages.jsonschema
python3Packages.mock
python3Packages.lxml
];
buildInputs =
@@ -76,7 +76,7 @@ buildPythonApplication rec {
# Ghostscript support
++ lib.optional enableGhostscript ghostscript;
propagatedBuildInputs = with pythonPackages; [
propagatedBuildInputs = with python3Packages; [
berkeleydb
pyicu
pygobject3
-4
View File
@@ -13726,10 +13726,6 @@ with pkgs;
gphoto2fs = callPackage ../applications/misc/gphoto2/gphotofs.nix { };
gramps = callPackage ../applications/misc/gramps {
pythonPackages = python3Packages;
};
graphicsmagick_q16 = graphicsmagick.override { quantumdepth = 16; };
graphicsmagick-imagemagick-compat = graphicsmagick.imagemagick-compat;