python3Packages.pyhanko: 0.31.0 -> 0.33.0 (#489358)

This commit is contained in:
kirillrdy
2026-02-11 22:41:53 +00:00
committed by GitHub
2 changed files with 29 additions and 34 deletions
+12 -3
View File
@@ -2,18 +2,19 @@
lib,
fetchFromGitHub,
python3Packages,
versionCheckHook,
nix-update-script,
}:
python3Packages.buildPythonApplication (finalAttrs: {
pname = "pyhanko-cli";
version = "0.2.0";
version = "0.2.1";
pyproject = true;
src = fetchFromGitHub {
owner = "MatthiasValvekens";
repo = "pyhanko";
tag = "pyhanko-cli/v${finalAttrs.version}";
hash = "sha256-ZDHAcI2yoiVifYt05V85lz8mJmoyi10g4XoLQ+LhLHE=";
hash = "sha256-UyJ9odchy63CcCkJVtBgraRQuD2fxqCciwLuhN4+8aw=";
};
sourceRoot = "${finalAttrs.src.name}/pkgs/pyhanko-cli";
@@ -40,13 +41,21 @@ python3Packages.buildPythonApplication (finalAttrs: {
]
++ lib.concatAttrValues pyhanko.optional-dependencies;
nativeCheckInputs = with python3Packages; [
nativeCheckInputs = [
versionCheckHook
]
++ (with python3Packages; [
pytestCheckHook
pyhanko.testData
requests-mock
freezegun
certomancer
aiohttp
]);
disabledTestPaths = [
# ImportError: cannot import name 'SOFTHSM' from 'test_utils.signing_commons'
"tests/test_cli_signing_pkcs11.py"
];
passthru.updateScript = nix-update-script {
@@ -36,26 +36,26 @@
signxml,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "pyhanko";
version = "0.31.0";
version = "0.33.0";
pyproject = true;
src = fetchFromGitHub {
owner = "MatthiasValvekens";
repo = "pyHanko";
tag = "v${version}";
hash = "sha256-ZDHAcI2yoiVifYt05V85lz8mJmoyi10g4XoLQ+LhLHE=";
tag = "v${finalAttrs.version}";
hash = "sha256-+576MAbtWFGaPu/HqhdeeRNHi84pLnDaMDa0e/J/CUs=";
};
sourceRoot = "${src.name}/pkgs/pyhanko";
sourceRoot = "${finalAttrs.src.name}/pkgs/pyhanko";
postPatch = ''
substituteInPlace src/pyhanko/version/__init__.py \
--replace-fail "0.0.0.dev1" "${version}" \
--replace-fail "(0, 0, 0, 'dev1')" "tuple(\"${version}\".split(\".\"))"
--replace-fail "0.0.0.dev1" "${finalAttrs.version}" \
--replace-fail "(0, 0, 0, 'dev1')" "tuple(\"${finalAttrs.version}\".split(\".\"))"
substituteInPlace pyproject.toml \
--replace-fail "0.0.0.dev1" "${version}"
--replace-fail "0.0.0.dev1" "${finalAttrs.version}"
'';
build-system = [ setuptools ];
@@ -96,18 +96,14 @@ buildPythonPackage rec {
pytestCheckHook
python-pae
requests-mock
passthru.testData
finalAttrs.passthru.testData
signxml
]
++ lib.concatAttrValues optional-dependencies;
++ lib.concatAttrValues finalAttrs.passthru.optional-dependencies;
disabledTestPaths = [
# ModuleNotFoundError: No module named 'csc_dummy'
"tests/test_csc.py"
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
# OSError: One or more parameters passed to a function were not valid.
"tests/cli_tests"
];
disabledTests = [
@@ -134,29 +130,19 @@ buildPythonPackage rec {
"test_ocsp_embed"
"test_ts_fetch_aiohttp"
"test_ts_fetch_requests"
# https://github.com/MatthiasValvekens/pyHanko/pull/595
"test_simple_text_stamp_on_page_with_leaky_graphics_state"
"test_simple_text_stamp_on_page_with_leaky_graphics_state_without_coord_correction"
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
# OSError: One or more parameters passed to a function were not valid.
"test_detached_cms_with_duplicated_attr"
"test_detached_cms_with_wrong_tst"
"test_diff_analysis_add_extensions_dict"
"test_diff_analysis_update_indirect_extensions_not_all_path"
"test_no_certificates"
"test_ocsp_without_nextupdate_embed"
];
__darwinAllowLocalNetworking = true;
pythonImportsCheck = [ "pyhanko" ];
passthru = {
testData = buildPythonPackage {
pname = "common-test-utils";
inherit version pyproject src;
inherit (finalAttrs) version src;
pyproject = true;
sourceRoot = "${src.name}/internal/common-test-utils";
sourceRoot = "${finalAttrs.src.name}/internal/common-test-utils";
# Include the test pdf/xml files etc. in the build output
postPatch = ''
echo "graft src/test_data" > MANIFEST.in
@@ -176,8 +162,8 @@ buildPythonPackage rec {
meta = {
description = "Sign and stamp PDF files";
homepage = "https://github.com/MatthiasValvekens/pyHanko";
changelog = "https://github.com/MatthiasValvekens/pyHanko/blob/${src.tag}/docs/changelog.rst#pyhanko";
changelog = "https://github.com/MatthiasValvekens/pyHanko/blob/${finalAttrs.src.tag}/docs/changelog.rst#pyhanko";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.antonmosich ];
};
}
})