iotas: 0.2.10 -> 0.9.5 (#356613)

This commit is contained in:
Peder Bergebakken Sundt 2024-11-24 03:50:29 +01:00 committed by GitHub
commit c72e2bdfab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,25 +1,26 @@
{ lib {
, python3 lib,
, fetchFromGitLab python3,
, meson fetchFromGitLab,
, ninja meson,
, pkg-config ninja,
, gobject-introspection pkg-config,
, wrapGAppsHook4 gobject-introspection,
, appstream-glib wrapGAppsHook4,
, desktop-file-utils appstream-glib,
, glib desktop-file-utils,
, gtk4 glib,
, librsvg gtk4,
, libsecret librsvg,
, libadwaita libsecret,
, gtksourceview5 libadwaita,
, webkitgtk_6_0 gtksourceview5,
webkitgtk_6_0,
}: }:
python3.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
pname = "iotas"; pname = "iotas";
version = "0.2.10"; version = "0.9.5";
pyproject = false; pyproject = false;
src = fetchFromGitLab { src = fetchFromGitLab {
@ -27,7 +28,7 @@ python3.pkgs.buildPythonApplication rec {
owner = "World"; owner = "World";
repo = "iotas"; repo = "iotas";
rev = version; rev = version;
hash = "sha256-aITt+TJb/LrVOyb/mAC7U6/NJ4stHD76jjBFC7Pt7fU="; hash = "sha256-SDapnAGPTi7tnzl3zeNJw2CABhVVAXMyn1bllg8fChw=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -58,6 +59,8 @@ python3.pkgs.buildPythonApplication rec {
linkify-it-py linkify-it-py
mdit-py-plugins mdit-py-plugins
pypandoc pypandoc
strenum
packaging
]; ];
# prevent double wrapping # prevent double wrapping
@ -66,12 +69,12 @@ python3.pkgs.buildPythonApplication rec {
makeWrapperArgs+=("''${gappsWrapperArgs[@]}") makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
''; '';
meta = with lib; { meta = {
description = "Simple note taking with mobile-first design and Nextcloud sync"; description = "Simple note taking with mobile-first design and Nextcloud sync";
homepage = "https://gitlab.gnome.org/World/iotas"; homepage = "https://gitlab.gnome.org/World/iotas";
license = licenses.gpl3Plus; license = lib.licenses.gpl3Plus;
platforms = platforms.linux; platforms = lib.platforms.linux;
mainProgram = "iotas"; mainProgram = "iotas";
maintainers = with maintainers; [ zendo ]; maintainers = with lib.maintainers; [ zendo ];
}; };
} }