python3Packages.push-receiver: drop

Unmaintained for 3 years, broken.
This commit is contained in:
Leona Maroni
2025-05-17 12:05:08 +02:00
parent 030e0581bb
commit fb937a45af
3 changed files with 1 additions and 39 deletions
@@ -1,37 +0,0 @@
{
buildPythonPackage,
fetchPypi,
lib,
appdirs,
http-ece,
oscrypto,
protobuf,
}:
buildPythonPackage rec {
pname = "push-receiver";
version = "0.1.1";
format = "setuptools";
src = fetchPypi {
inherit version;
pname = "push_receiver";
hash = "sha256-Tknmra39QfA+OgrRxzKDLbkPucW8zgdHqz5FGQnzYOw=";
};
propagatedBuildInputs = [
appdirs # required for running the bundled example
http-ece # required for listening for new message
oscrypto
protobuf
];
pythonImportsCheck = [ "push_receiver" ];
meta = with lib; {
homepage = "https://github.com/Francesco149/push_receiver";
description = "Subscribe to GCM/FCM and receive notifications";
license = licenses.unlicense;
maintainers = with maintainers; [ veehaitch ];
};
}
+1
View File
@@ -510,6 +510,7 @@ mapAliases ({
proxy_tools = proxy-tools; # added 2023-11-05
pur = throw "pur has been renamed to pkgs.pur"; # added 2021-11-08
pushbullet = pushbullet-py; # Added 2022-10-15
push-receiver = throw "push-receiver has been removed since it is unmaintained for 3 years"; # added 2025-05-17
Pweave = pweave; # added 2023-02-19
pwndbg = throw "'pwndbg' has been removed due to dependency version incompatibilities that are infeasible to maintain in nixpkgs. Use the downstream flake that pwndbg provides instead: https://github.com/pwndbg/pwndbg"; # Added 2025-02-09
pxml = throw "pxml was removed, because it was disabled on all python version since 3.8 and last updated in 2020."; # added 2024-05-13
-2
View File
@@ -11734,8 +11734,6 @@ self: super: with self; {
purl = callPackage ../development/python-modules/purl { };
push-receiver = callPackage ../development/python-modules/push-receiver { };
pushbullet-py = callPackage ../development/python-modules/pushbullet-py { };
pushover-complete = callPackage ../development/python-modules/pushover-complete { };