Merge pull request #208202 from r-ryantm/auto-update/python310Packages.fastecdsa

python310Packages.fastecdsa: 2.2.3 -> 2.3.1
This commit is contained in:
Pavol Rusnak 2022-12-29 10:48:33 +01:00 committed by GitHub
commit 39a3f44f9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,21 +3,28 @@
, fetchPypi
, gmp
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "fastecdsa";
version = "2.2.3";
version = "2.3.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "269bdb0f618b38f8f6aec9d23d23db518046c3cee01a954fa6aa7322a1a7db8f";
hash = "sha256-8ZjORPaUbKuwKYip9J0U78QQ26XiEemDIbqdhzeyP/g=";
};
buildInputs = [ gmp ];
buildInputs = [
gmp
];
checkInputs = [ pytestCheckHook ];
checkInputs = [
pytestCheckHook
];
disabledTestPaths = [
# skip tests which require being online to download test vectors
@ -30,11 +37,14 @@ buildPythonPackage rec {
# but the installed package works just fine
doCheck = false;
pythonImportsCheck = [ "fastecdsa" ];
pythonImportsCheck = [
"fastecdsa"
];
meta = with lib; {
description = "Fast elliptic curve digital signatures";
homepage = "https://github.com/AntonKueltz/fastecdsa";
changelog = "https://github.com/AntonKueltz/fastecdsa/blob/v${version}/CHANGELOG.md";
license = licenses.unlicense;
maintainers = with maintainers; [ prusnak ];
};