Files
nixpkgs/pkgs/development/python-modules/gotrue/default.nix
T
Martin Weinelt 24bc0e33db python3Packages.gotrue: 2.12.3 -> 2.12.4
This commit was automatically generated using update-python-libraries.
2026-02-01 17:19:13 +01:00

45 lines
745 B
Nix

{
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 ];
};
}