Unverified Commit d8ca29fb authored by Tom Hunze's avatar Tom Hunze
Browse files

python3Packages.supafunc: drop

The `supafunc` Python package was deprecated upstream and replaced by
`supabase_functions` in December 2024, and has been unmaintained since
August 2025 [1].

[1] https://pypi.org/project/supafunc/
parent b9a2d58f
Loading
Loading
Loading
Loading
+0 −40
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  httpx,
  poetry-core,
  strenum,
}:

buildPythonPackage rec {
  pname = "supafunc";
  version = "0.10.2";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-ReTVAIVBZ8JhUVxD96NjMg4KkoEYGC/okyre/d7dtUU=";
  };

  build-system = [ poetry-core ];

  dependencies = [
    strenum
    httpx
  ]
  ++ httpx.optional-dependencies.http2;

  # Tests are not in PyPI package and source is not tagged
  doCheck = false;

  pythonImportsCheck = [ "supafunc" ];

  meta = {
    description = "Library for Supabase Functions";
    homepage = "https://github.com/supabase/functions-py";
    changelog = "https://github.com/supabase/functions-py/blob/v${version}/CHANGELOG.md";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ siegema ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -529,6 +529,7 @@ mapAliases {
  sqlalchemy-views = throw "'sqlalchemy-views' has been removed as it was broken and unmaintained upstream"; # Added 2025-11-09
  sqlalchemy_migrate = throw "'sqlalchemy_migrate' has been renamed to/replaced by 'sqlalchemy-migrate'"; # Converted to throw 2025-10-29
  subunit2sql = throw "subunit2sql has been removed because it has been marked as broken since at least November 2024."; # Added 2025-10-04
  supafunc = throw "'supafunc' has been replaced by 'supabase-functions'"; # Added 2026-03-08
  supervise_api = throw "'supervise_api' has been renamed to/replaced by 'supervise-api'"; # Converted to throw 2025-10-29
  swh-perfecthash = throw "'swh-perfecthash' has been renamed to/replaced by 'swh-shard'"; # added 2025-11-13
  synologydsm-api = throw "'synologydsm-api' has been renamed to/replaced by 'py-synologydsm-api'"; # Converted to throw 2025-10-29
+0 −2
Original line number Diff line number Diff line
@@ -18630,8 +18630,6 @@ self: super: with self; {
  supabase-functions = callPackage ../development/python-modules/supabase-functions { };
  supafunc = callPackage ../development/python-modules/supafunc { };
  super-collections = callPackage ../development/python-modules/super-collections { };
  superqt = callPackage ../development/python-modules/superqt { };