mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-08 14:23:40 +00:00
Python update caused one of the tests to fail. A patch that fixes this has been submitted upstream, yet to be applied. This commit adds the patch. See https://github.com/tlsfuzzer/python-ecdsa/pull/371.
62 lines
1.5 KiB
Nix
62 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
gitUpdater,
|
|
hypothesis,
|
|
openssl,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
six,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "ecdsa";
|
|
version = "0.19.2";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tlsfuzzer";
|
|
repo = "python-ecdsa";
|
|
tag = "python-ecdsa-${finalAttrs.version}";
|
|
hash = "sha256-u+EwAF/EnF33l/gy5y8eoA7aVeI/0cq9DDL9UUwgPFw=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ six ];
|
|
|
|
pythonImportsCheck = [ "ecdsa" ];
|
|
|
|
nativeCheckInputs = [
|
|
hypothesis
|
|
openssl # Only needed for tests
|
|
pytestCheckHook
|
|
];
|
|
|
|
patches = [
|
|
# Python update caused one of the tests to fail. A patch that fixes this
|
|
# has been submitted upstream, yet to be applied.
|
|
# https://github.com/tlsfuzzer/python-ecdsa/pull/371
|
|
./pr-371-fix-test-2026-05-23.patch
|
|
];
|
|
|
|
passthru.updateScript = gitUpdater {
|
|
rev-prefix = "python-ecdsa-";
|
|
};
|
|
|
|
meta = {
|
|
changelog = "https://github.com/tlsfuzzer/python-ecdsa/blob/${finalAttrs.src.tag}/NEWS";
|
|
description = "ECDSA cryptographic signature library";
|
|
homepage = "https://github.com/warner/python-ecdsa";
|
|
license = lib.licenses.mit;
|
|
knownVulnerabilities = [
|
|
# "I don't want people to use this library in production environments.
|
|
# It's a teaching tool, it's a testing tool, it's absolutely not an
|
|
# production grade implementation."
|
|
# https://github.com/tlsfuzzer/python-ecdsa/issues/330
|
|
"CVE-2024-23342"
|
|
];
|
|
};
|
|
})
|