nixpkgs/pkgs/applications/graphics/rapid-photo-downloader/default.nix

89 lines
2.3 KiB
Nix
Raw Normal View History

{ lib, mkDerivationWith, fetchurl, python3Packages
, file, intltool, gobject-introspection, libgudev
, udisks, gexiv2, gst_all_1, libnotify
2019-05-22 11:03:39 +00:00
, exiftool, gdk-pixbuf, libmediainfo, vmtouch
2018-03-09 09:22:37 +00:00
}:
mkDerivationWith python3Packages.buildPythonApplication rec {
2018-03-09 09:22:37 +00:00
pname = "rapid-photo-downloader";
version = "0.9.18";
2018-03-09 09:22:37 +00:00
src = fetchurl {
url = "https://launchpad.net/rapid/pyqt/${version}/+download/${pname}-${version}.tar.gz";
sha256 = "15p7sssg6vmqbm5xnc4j5dr89d7gl7y5qyq44a240yl5aqkjnybw";
2018-03-09 09:22:37 +00:00
};
# Disable version check and fix install tests
postPatch = ''
substituteInPlace raphodo/constants.py \
--replace "disable_version_check = False" "disable_version_check = True"
substituteInPlace raphodo/rescan.py \
--replace "from preferences" "from raphodo.preferences"
'';
nativeBuildInputs = [
file
intltool
];
# Package has no generally usable unit tests.
# The included doctests expect specific, hardcoded hardware to be present.
doCheck = false;
2018-03-09 09:22:37 +00:00
# NOTE: Without gobject-introspection in buildInputs, launching fails with
# "Namespace [Notify / GExiv2 / GUdev] not available"
2018-03-09 09:22:37 +00:00
buildInputs = [
2019-05-22 11:03:39 +00:00
gdk-pixbuf
gexiv2
gobject-introspection
gst_all_1.gst-libav
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
2018-03-09 09:22:37 +00:00
gst_all_1.gstreamer
gst_all_1.gstreamer.dev
libgudev
2018-03-09 09:22:37 +00:00
libnotify
udisks
];
propagatedBuildInputs = with python3Packages; [
2018-03-09 09:22:37 +00:00
pyqt5
pygobject3
gphoto2
pyzmq
tornado
psutil
pyxdg
arrow
python-dateutil
2018-03-09 09:22:37 +00:00
easygui
colour
pymediainfo
sortedcontainers
rawkit
requests
colorlog
pyprind
tenacity
];
2018-03-09 09:22:37 +00:00
preFixup = ''
makeWrapperArgs+=(
--set GI_TYPELIB_PATH "$GI_TYPELIB_PATH"
--set PYTHONPATH "$PYTHONPATH"
2021-01-15 13:21:58 +00:00
--prefix PATH : "${lib.makeBinPath [ exiftool vmtouch ]}"
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ libmediainfo ]}"
--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0"
"''${qtWrapperArgs[@]}"
)
'';
2018-03-09 09:22:37 +00:00
meta = with lib; {
2018-03-09 09:22:37 +00:00
description = "Photo and video importer for cameras, phones, and memory cards";
homepage = "https://www.damonlynch.net/rapid/";
license = licenses.gpl3Plus;
2018-03-09 09:22:37 +00:00
platforms = platforms.linux;
maintainers = with maintainers; [ jfrankenau ];
};
}