Skip to content

Commit df4f0aa

Browse files
committed
chore: add nix section to readme
1 parent 40631eb commit df4f0aa

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# `supabase-py`
22

3-
Python monorepo for all [Supabase](https://supabase.com) libraries.
3+
Python monorepo for all [Supabase](https://supabase.com) libraries. This is a work in progress, and currently these are the ones contained in this repository:
44

55
- [supabase](src/supabase/README.md)
66
- [realtime](src/realtime/README.md)
@@ -23,7 +23,7 @@ cd supabase-py
2323

2424
### Create and Activate a Virtual Environment
2525

26-
We recommend activating your virtual environment. For example, we like `uv` and `conda`! Click [here](https://docs.python.org/3/library/venv.html) for more about Python virtual environments and working with [conda](https://conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html#activating-an-environment) and [uv](https://docs.astral.sh/uv/getting-started/features/).
26+
We recommend activating your virtual environment. For example, we like `uv`, `conda` and `nix`! Click [here](https://docs.python.org/3/library/venv.html) for more about Python virtual environments and working with [conda](https://conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html#activating-an-environment) and [uv](https://docs.astral.sh/uv/getting-started/features/). For nix, just install it with flakes enabled.
2727

2828
Using uv:
2929
```
@@ -46,6 +46,11 @@ conda create --name supabase-py
4646
conda activate supabase-py
4747
```
4848

49+
Using nix:
50+
```bash
51+
nix develop
52+
```
53+
4954
### Local installation
5055

5156
You can also install locally after cloning this repo. Install Development mode with `pip install -e`, which makes it editable, so when you edit the source code the changes will be reflected in your python module.

0 commit comments

Comments
 (0)