python312Packages.certomancer: 0.12.0 -> 0.12.3

Diff: https://github.com/MatthiasValvekens/certomancer/compare/refs/tags/v0.12.0...v0.12.3
This commit is contained in:
Robert Schütz 2024-11-20 14:44:07 -08:00
parent 1563ad1a61
commit af5177004d

View File

@ -2,7 +2,6 @@
lib,
buildPythonPackage,
pythonOlder,
pythonAtLeast,
fetchFromGitHub,
# build-system
setuptools,
@ -30,17 +29,16 @@
buildPythonPackage rec {
pname = "certomancer";
version = "0.12.0";
version = "0.12.3";
pyproject = true;
# https://github.com/MatthiasValvekens/certomancer/issues/12
disabled = pythonOlder "3.7" || pythonAtLeast "3.12";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "MatthiasValvekens";
repo = "certomancer";
rev = "refs/tags/v${version}";
hash = "sha256-c2Fq4YTHQvhxuZrpKQYZvqHIMfubbkeKV4rctELLeJU=";
hash = "sha256-2BjLoGUWU0RaWVI9JA3s/Hf5aVtmv8hn+fB2jkWdQNY=";
};
build-system = [
@ -75,11 +73,6 @@ buildPythonPackage rec {
requests
] ++ lib.flatten (builtins.attrValues optional-dependencies);
disabledTests = [
# pyhanko_certvalidator.errors.DisallowedAlgorithmError
"test_validate"
];
pythonImportsCheck = [ "certomancer" ];
meta = {