Unverified Commit 47c8b8de authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

python3Packages.{gotrue,supafunc}: drop (#497938)

parents 4aab9796 d8ca29fb
Loading
Loading
Loading
Loading
+0 −44
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  poetry-core,
  httpx,
  h2,
  pydantic,
  pyjwt,
  pytest-mock,
}:

buildPythonPackage rec {
  pname = "gotrue";
  version = "2.12.4";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-NdLljgZkhjIfTf8AM7MKU9BXx/Q2wVKHEi+gy4MwKbE=";
  };

  build-system = [ poetry-core ];

  dependencies = [
    httpx
    h2
    pydantic
    pyjwt
    pytest-mock
  ];

  pythonImportsCheck = [ "gotrue" ];

  # test aren't in pypi package
  doCheck = false;

  meta = {
    homepage = "https://github.com/supabase/auth-py";
    license = lib.licenses.mit;
    description = "Python Client Library for Supabase Auth";
    maintainers = with lib.maintainers; [ siegema ];
  };
}
+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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -221,6 +221,7 @@ mapAliases {
  GitPython = throw "'GitPython' has been renamed to/replaced by 'gitpython'"; # Converted to throw 2025-10-29
  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
  gpapi = throw "'gpapi' has been superseded by google-api-python-client"; # Added 2025-11-09
  gplaycli = throw "'gplaycli' has been removed as it was broken and lacked maintenance"; # Added 2025-11-09
  gpy = throw "'gpy' has been removed as it is based on 'paramz', which was removed"; # added 2025-11-10
@@ -528,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 −4
Original line number Diff line number Diff line
@@ -6594,8 +6594,6 @@ self: super: with self; {
  gotify = callPackage ../development/python-modules/gotify { };
  gotrue = callPackage ../development/python-modules/gotrue { };
  govee-ble = callPackage ../development/python-modules/govee-ble { };
  govee-led-wez = callPackage ../development/python-modules/govee-led-wez { };
@@ -18711,8 +18709,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 { };