python311Packages.chacha20poly1305-reuseable: 0.4.2 -> 0.10.2

https://github.com/bdraco/chacha20poly1305-reuseable/blob/v0.10.2/CHANGELOG.md
This commit is contained in:
Martin Weinelt 2023-10-23 01:54:31 +02:00
parent c70f2bbf26
commit 3282bddba5
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -4,7 +4,7 @@
, pythonOlder
# build-system
, cython
, cython_3
, poetry-core
, setuptools
@ -17,12 +17,12 @@
let
pname = "chacha20poly1305-reuseable";
version = "0.4.2";
version = "0.10.2";
in
buildPythonPackage {
inherit pname version;
format = "pyproject";
pyproject = true;
disabled = pythonOlder "3.7";
@ -30,11 +30,11 @@ buildPythonPackage {
owner = "bdraco";
repo = pname;
rev = "v${version}";
hash = "sha256-RBXEumw5A/XzB/LazUcvq8JM/Ahvcy9lCTYKpGcY7go=";
hash = "sha256-jLaYdVNgjpy/fjjt9om72jirgMaM61T/OZu/iHZ/W4k=";
};
nativeBuildInputs = [
cython
cython_3
poetry-core
setuptools
];