python3Packages.starkbank-ecdsa: 2.2.0 -> 2.3.1 (#513471)

This commit is contained in:
Nick Cao
2026-04-27 19:38:52 +00:00
committed by GitHub
@@ -3,20 +3,23 @@
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "starkbank-ecdsa";
version = "2.2.0";
format = "setuptools";
version = "2.3.1";
pyproject = true;
src = fetchFromGitHub {
owner = "starkbank";
repo = "ecdsa-python";
tag = "v${version}";
hash = "sha256-HarlCDE2qOLbyhMLOE++bTC+7srJqwmohM6vrJkJ/gc=";
tag = "v${finalAttrs.version}";
hash = "sha256-5yF2tVCgHJX++NncWiYfLE0P98Sxy91VN3qgc8PSLOI=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
preCheck = ''
@@ -36,7 +39,7 @@ buildPythonPackage rec {
meta = {
description = "Python ECDSA library";
homepage = "https://github.com/starkbank/ecdsa-python";
license = with lib.licenses; [ mit ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})