From af5177004d0c765e40dc54bdaf9ffa587d515cb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 20 Nov 2024 14:44:07 -0800 Subject: [PATCH] python312Packages.certomancer: 0.12.0 -> 0.12.3 Diff: https://github.com/MatthiasValvekens/certomancer/compare/refs/tags/v0.12.0...v0.12.3 --- .../python-modules/certomancer/default.nix | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/pkgs/development/python-modules/certomancer/default.nix b/pkgs/development/python-modules/certomancer/default.nix index b04866a54607..5e70f24eedda 100644 --- a/pkgs/development/python-modules/certomancer/default.nix +++ b/pkgs/development/python-modules/certomancer/default.nix @@ -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 = {