Unverified Commit 93f1d8b8 authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

python3Packages.push-receiver: drop (#407875)

parents e3e3d3b0 fb937a45
Loading
Loading
Loading
Loading
+0 −37
Original line number Diff line number Diff line
{
  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 −0
Original line number Diff line number Diff line
@@ -512,6 +512,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
+0 −2
Original line number Diff line number Diff line
@@ -11732,8 +11732,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 { };