Merge pull request #229172 from mweinelt/chacha20poly1305-reusable-0.2.5

python310Packages.chacha20poly1305-reuseable: 0.2.2 -> 0.2.5
This commit is contained in:
Martin Weinelt 2023-05-10 20:58:25 +02:00 committed by GitHub
commit 5eb01f88f1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,7 +17,7 @@
let
pname = "chacha20poly1305-reuseable";
version = "0.2.2";
version = "0.2.5";
in
buildPythonPackage {
@ -30,7 +30,7 @@ buildPythonPackage {
owner = "bdraco";
repo = pname;
rev = "v${version}";
hash = "sha256-vMc5fgFYS06m01WDLRyna3T1uuR+JinqM6huXAQ34rI=";
hash = "sha256-T5mmHUMNbdvexeSaIDZIm/3yQcDKnWdor9IK63FE0no=";
};
nativeBuildInputs = [
@ -59,7 +59,7 @@ buildPythonPackage {
meta = with lib; {
description = "ChaCha20Poly1305 that is reuseable for asyncio";
homepage = "https://github.com/bdraco/chacha20poly1305-reuseable";
changelog = "https://github.com/bdraco/chacha20poly1305-reuseable/blob/main/CHANGELOG.md";
changelog = "https://github.com/bdraco/chacha20poly1305-reuseable/blob/v${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ hexa ];
};