python3Packages.gitterpy: drop

This commit is contained in:
Martin Weinelt 2026-07-04 22:59:20 +02:00
commit e9d6b4dd47
No known key found for this signature in database
GPG key ID: 87C1E9888F856759
3 changed files with 1 additions and 36 deletions

View file

@ -1,34 +0,0 @@
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
requests,
}:
buildPythonPackage rec {
pname = "gitterpy";
version = "0.1.7";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-nmZ6sVjrHRLfvXMr/fYiN+a4Wly87YKwAR+heP/sNkE=";
};
build-system = [ setuptools ];
dependencies = [ requests ];
# Package has no tests
doCheck = false;
pythonImportsCheck = [ "gitterpy" ];
meta = {
description = "Python interface for the Gitter API";
homepage = "https://github.com/MichaelYusko/GitterPy";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
}

View file

@ -256,6 +256,7 @@ mapAliases {
ghidra-bridge = throw "'ghidra-bridge' has been removed as it was unmaintained upstream"; # Added 2026-04-05
github3_py = throw "'github3_py' has been renamed to/replaced by 'github3-py'"; # Converted to throw 2025-10-29
GitPython = throw "'GitPython' has been renamed to/replaced by 'gitpython'"; # Converted to throw 2025-10-29
gitterpy = throw "'gitterpy' was removed. The service was migrated to Matrix"; # Added 2026-06-04
google_api_python_client = throw "'google_api_python_client' has been renamed to/replaced by 'google-api-python-client'"; # Converted to throw 2025-10-29
googleapis_common_protos = throw "'googleapis_common_protos' has been renamed to/replaced by 'googleapis-common-protos'"; # Converted to throw 2025-10-29
gotrue = throw "'gotrue' has been replaced by 'supabase-auth'"; # Added 2026-03-08

View file

@ -6513,8 +6513,6 @@ self: super: with self; {
gitpython = callPackage ../development/python-modules/gitpython { };
gitterpy = callPackage ../development/python-modules/gitterpy { };
giturlparse = callPackage ../development/python-modules/giturlparse { };
glad = callPackage ../development/python-modules/glad { };