Unverified Commit 76f759a9 authored by Yohann Boniface's avatar Yohann Boniface Committed by GitHub
Browse files

python3Packages.emailthreads: drop (#508866)

parents e02e1158 ada612fe
Loading
Loading
Loading
Loading
+0 −33
Original line number Diff line number Diff line
{
  lib,
  fetchFromGitHub,
  buildPythonPackage,
  isPy3k,
  unittestCheckHook,
}:

buildPythonPackage rec {
  pname = "emailthreads";
  version = "0.1.3";
  format = "setuptools";
  disabled = !isPy3k;

  # pypi is missing files for tests
  src = fetchFromGitHub {
    owner = "emersion";
    repo = "python-emailthreads";
    rev = "v${version}";
    hash = "sha256-7BhYS1DQCW9QpG31asPCq5qPyJy+WW2onZpvEHhwQCs=";
  };

  nativeCheckInputs = [ unittestCheckHook ];

  env.PKGVER = version;

  meta = {
    homepage = "https://github.com/emersion/python-emailthreads";
    description = "Python library to parse and format email threads";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ eadwu ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -191,6 +191,7 @@ mapAliases {
  editdistance-s = throw "editdistance-s has been removed since it was added solely for the identity package, which has moved on to ukkonen"; # added 2025-08-04
  elegy = throw "elegy has been removed because it has transitively been marked as broken since 2023."; # Added 2025-10-11
  email_validator = throw "'email_validator' has been renamed to/replaced by 'email-validator'"; # Converted to throw 2025-10-29
  emailthreads = throw "'emailthreads' has been removed because the upstream repository was archived in 2024"; # Added 2026-04-09
  embreex = throw "embreex has been removed, as it required embree2"; # added 2025-09-14
  enocean = throw "'enocean' was removed because Home Assistant switched to 'enocean-async'"; # added 2026-03-31
  eris = throw "eris has been removed due to a hostile upstream moving tags and breaking src FODs"; # Added 2025-09-01
+0 −2
Original line number Diff line number Diff line
@@ -4988,8 +4988,6 @@ self: super: with self; {
  email-validator = callPackage ../development/python-modules/email-validator { };
  emailthreads = callPackage ../development/python-modules/emailthreads { };
  embedding-reader = callPackage ../development/python-modules/embedding-reader { };
  emborg = callPackage ../development/python-modules/emborg { };