Initialize using
nix flake init --template "github:nulladmin1/nix-flake-templates#python-pyproject-nix"
OR
nix flake init --template "github:nulladmin1/nix-flake-templates#pyproject"
This is how the structure of the template looks like:
📦 python-pyproject-nix
├─ 📁 app
│ ├─ 🐍 __init__.py
│ └─ 🐍 main.py
├─ 🔒 flake.lock
├─ ⚙️ flake.nix
├─ ⚙️ pyproject.toml
├─ 📃 README.md
└─ 📁 tests
└─ 🐍 test_main.py
It includes a basic Python project that returns an SHA256 encoded string of the user's input. It has a testcase that can be run using Pytest
or unittest
.
The flake is able to run in the specified systems listed in the flake. It contains a devShells
as an output with a pythonEnv
that contains all project dependencies, and an app as an output that builds a Python project using pyproject-nix
's 'buildPythonPackage
renderer.
nix run
nix develop
(Optional) Format flake.nix
using Alejandra
nix fmt
- In 'flake.nix'
- Edit description
{ description = "Nix Flake Template for Python using pyproject-nix"; }
- Change Python version if necessary
python = forEachSystem (system: pkgsFor.${system}.python312);
- Change devShell dependencies
{ pkgsFor.${system}.mkShell { packages = [ pythonEnv ]; }; }
- Change executable name for app
program = "${self.packages.${system}.default}/bin/app";
- Edit description
- In
pyproject.toml
-
Change project details accordingly
[project] name = "app" version = "0.1.0" description = "" authors = [ {name = "Your Name", email = "[email protected]"}, ]
-
Change Python version accordingly
requires-python = ">= 3.11"
-
Add necessary and optional build dependencies
dependencies = [ ] [project.optional-dependencies] test = [ "pytest" ]
-
Change the name and path of scripts if needed
[project.scripts] app = "app:main"
-
- For the structure and code
- Rename the
app/
directory to the name of your project. Make sure its the same as the path in thepyproject.toml
📦 python-pyproject-nix ├─ 📁 app │ ├─ 🐍 __init__.py │ └─ 🐍 main.py
- Add necessary code for the program in the previous subdirectory.
- Make sure that for the
__init__.py
, that it imports from the name of your project, and it imports the necessary functions to be used as a libraryfrom app.main import main, get_sha256
- Add necessary test cases and modifications in the
tests/
subdirectory. Prepend all added files in that subdirectory withtest_
- Make sure that for the
test_main.py
, that it imports from the name of your project, and it imports the necessary functions for testingfrom app.main import main, get_sha256
- Rename the