python3Packages.x3dh: 1.1.0 -> 1.2.0

This commit is contained in:
Weijia Wang 2025-07-11 14:04:43 -05:00
parent bec4860dbc
commit d37715ad0e

View File

@ -9,17 +9,18 @@
typing-extensions, typing-extensions,
pytestCheckHook, pytestCheckHook,
pytest-asyncio, pytest-asyncio,
pytest-cov-stub,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "x3dh"; pname = "x3dh";
version = "1.1.0"; version = "1.2.0";
pyproject = true; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Syndace"; owner = "Syndace";
repo = "python-x3dh"; repo = "python-x3dh";
tag = "v${version}"; tag = "v${version}";
hash = "sha256-/hC1Kze4yBOlgbWJcGddcYty9fqwZ08Lyi0IiqSDibI="; hash = "sha256-NLuFfkutFtNrpBcLA/83QArCDrlrT+i85s2d6FHtuT0=";
}; };
strictDeps = true; strictDeps = true;
@ -38,6 +39,7 @@ buildPythonPackage rec {
nativeCheckInputs = [ nativeCheckInputs = [
pytestCheckHook pytestCheckHook
pytest-asyncio pytest-asyncio
pytest-cov-stub
]; ];
pythonImportsCheck = [ "x3dh" ]; pythonImportsCheck = [ "x3dh" ];