From c270defab79e46b4c98039b09ab6209d1a69ffb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Wed, 30 Mar 2022 01:17:35 +0200 Subject: [PATCH] python39Packages.pycurl: disable failing tests, add SuperSandro2000 as maintainer --- pkgs/development/python-modules/pycurl/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pycurl/default.nix b/pkgs/development/python-modules/pycurl/default.nix index 3585148b31c0..1bdd4f339885 100644 --- a/pkgs/development/python-modules/pycurl/default.nix +++ b/pkgs/development/python-modules/pycurl/default.nix @@ -71,12 +71,17 @@ buildPythonPackage rec { "test_libcurl_ssl_gnutls" # AssertionError: assert 'crypto' in ['curl'] "test_ssl_in_static_libs" + # pycurl.error: (27, '') + "test_getinfo_raw_certinfo" + "test_request_with_certinfo" + "test_request_with_verifypeer" + "test_request_without_certinfo" ]; meta = with lib; { homepage = "http://pycurl.io/"; description = "Python Interface To The cURL library"; license = with licenses; [ lgpl2Only mit ]; - maintainers = with maintainers; []; + maintainers = with maintainers; [ SuperSandro2000 ]; }; }