mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
python3Packages.gitterpy: drop
This commit is contained in:
parent
7ed81b51f3
commit
e9d6b4dd47
3 changed files with 1 additions and 36 deletions
|
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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 { };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue