From ffe0631728b99ffeb57bb0eeacc43b3bfc113524 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 24 Nov 2024 15:52:28 -0800 Subject: [PATCH] libdeltachat: 1.150.0 -> 1.151.1 Diff: https://github.com/deltachat/deltachat-core-rust/compare/v1.150.0...v1.151.1 Changelog: https://github.com/deltachat/deltachat-core-rust/blob/v1.151.1/CHANGELOG.md --- pkgs/by-name/li/libdeltachat/package.nix | 6 +++--- .../python-modules/deltachat-rpc-client/default.nix | 7 ++++--- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/pkgs/by-name/li/libdeltachat/package.nix b/pkgs/by-name/li/libdeltachat/package.nix index d6f0ed78c13d..18bc3af5a086 100644 --- a/pkgs/by-name/li/libdeltachat/package.nix +++ b/pkgs/by-name/li/libdeltachat/package.nix @@ -20,13 +20,13 @@ stdenv.mkDerivation rec { pname = "libdeltachat"; - version = "1.150.0"; + version = "1.151.1"; src = fetchFromGitHub { owner = "deltachat"; repo = "deltachat-core-rust"; rev = "v${version}"; - hash = "sha256-lVMXW2fnpoa/iiypLhHl7WXLqouHfrRapEbXL37X7B8="; + hash = "sha256-sQPJ1IQicHzgjc2l1JYG7ieC+GKvp8cqhwZbL1yU29M="; }; patches = [ @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { cargoDeps = rustPlatform.fetchCargoVendor { pname = "deltachat-core-rust"; inherit version src; - hash = "sha256-nzAQEaTHkKjDmKDmwZEznpvVh1KfxTM83/82hjV/Cpw="; + hash = "sha256-EyOT88XEjIVTFv7XGUEsUIu4NcDdD89W5Hbl4xa/urc="; }; nativeBuildInputs = [ diff --git a/pkgs/development/python-modules/deltachat-rpc-client/default.nix b/pkgs/development/python-modules/deltachat-rpc-client/default.nix index ad33634739ad..d3195678f5c3 100644 --- a/pkgs/development/python-modules/deltachat-rpc-client/default.nix +++ b/pkgs/development/python-modules/deltachat-rpc-client/default.nix @@ -21,11 +21,12 @@ buildPythonPackage rec { build-system = [ setuptools ]; - dependencies = [ imap-tools ]; - pythonImportsCheck = [ "deltachat_rpc_client" ]; - nativeCheckInputs = [ pytestCheckHook ]; + nativeCheckInputs = [ + imap-tools + pytestCheckHook + ]; # requires a chatmail server doCheck = false;