Merge pull request #262835 from mweinelt/chacha20poly1305-reusable-0.6.0

python311Packages.chacha20poly1305-reuseable: 0.4.2 -> 0.10.2
This commit is contained in:
Nick Cao 2023-10-23 08:45:05 -04:00 committed by GitHub
commit 330adf9989
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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