diff --git a/pkgs/development/python-modules/push-receiver/default.nix b/pkgs/development/python-modules/push-receiver/default.nix deleted file mode 100644 index d5f4732bb313..000000000000 --- a/pkgs/development/python-modules/push-receiver/default.nix +++ /dev/null @@ -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 ]; - }; -} diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index 7c85a209d8f2..ea73bd77fde7 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -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 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index edb7b4e06ed4..1bc87e0e71a3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -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 { };