Unverified Commit bceeed48 authored by Tom Hunze's avatar Tom Hunze
Browse files

python3Packages.idna-ssl: drop

idna-ssl was archived upstream in October 2020 [1] and has no reverse
dependencies in nixpkgs anymore.

[1] https://github.com/aio-libs/idna-ssl
parent 33e12452
Loading
Loading
Loading
Loading
+0 −29
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  idna,
}:

buildPythonPackage rec {
  pname = "idna-ssl";
  version = "1.1.0";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "a933e3bb13da54383f9e8f35dc4f9cb9eb9b3b78c6b36f311254d6d0d92c6c7c";
  };

  propagatedBuildInputs = [ idna ];

  # Infinite recursion: tests require aiohttp, aiohttp requires idna-ssl
  doCheck = false;

  meta = {
    description = "Patch ssl.match_hostname for Unicode(idna) domains support";
    homepage = "https://github.com/aio-libs/idna-ssl";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ dotlambda ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -258,6 +258,7 @@ mapAliases {
  homepluscontrol = throw "'homepluscontrol' has been removed as it was unmaintained upstream"; # Added 2026-03-22
  howdoi = throw "'howdoi' has been removed as it was unmaintained upstream"; # Added 2026-04-19
  HTSeq = throw "'HTSeq' has been renamed to/replaced by 'htseq'"; # Converted to throw 2025-10-29
  idna-ssl = throw "'idna-ssl' has been removed as it was archived upstream"; # Added 2026-04-23
  IMAPClient = throw "'IMAPClient' has been renamed to/replaced by 'imapclient'"; # Converted to throw 2025-10-29
  inlinestyler = throw "inlinestyler has been removed because it is no longer maintained"; # added 2025-08-09
  ionhash = throw "ionhash has been removed due to being unmaintained upstream"; # added 2025-07-30
+0 −2
Original line number Diff line number Diff line
@@ -7404,8 +7404,6 @@ self: super: with self; {
  idna = callPackage ../development/python-modules/idna { };
  idna-ssl = callPackage ../development/python-modules/idna-ssl { };
  idrive-e2-client = callPackage ../development/python-modules/idrive-e2-client { };
  idstools = callPackage ../development/python-modules/idstools { };