Robert Schütz 2024-11-24 15:52:28 -08:00
parent b14b10581a
commit ffe0631728
2 changed files with 7 additions and 6 deletions

View File

@ -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 = [

View File

@ -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;