Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Support Nix for development #969

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions .github/workflows/format-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,17 @@ jobs:
- uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4
with:
python-version: "3.12.3"
- uses: cachix/install-nix-action@8887e596b4ee1134dae06b98d573bd674693f47c # v26
- uses: cachix/cachix-action@18cf96c7c98e048e10a83abd92116114cd8504be # v14
with:
name: linz
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
- name: Format
run: nix-shell --pure --run 'pre-commit run --all-files'
- name: Install
run: |
pip install poetry
poetry install --no-root
- name: Format
run: |
poetry run pre-commit run --all-files
- name: Unit Tests
run: |
poetry run pytest --doctest-modules .
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
*.pyc
__pycache__
/.pytest_cache
/python
Thumbs.db
/.venv
/.vscode
24 changes: 24 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@ repos:
stages: [pre-commit]
types: [python]

- id: deadnix
name: deadnix
entry: deadnix
args: [--edit, --fail]
files: \.nix$
language: system
stages: [pre-commit]

- id: gitlint
name: gitlint
entry: gitlint
Expand All @@ -34,6 +42,13 @@ repos:
types: [python]
require_serial: true

- id: nixfmt
name: nixfmt
entry: nixfmt
files: \.nix$
language: system
stages: [pre-commit]

- id: pylint
name: pylint
entry: pylint
Expand All @@ -42,6 +57,15 @@ repos:
types: [python]
require_serial: true

- id: statix
name: statix
entry: statix
args: [check]
files: \.nix$
pass_filenames: false
language: system
stages: [pre-commit]

- repo: https://github.com/pre-commit/mirrors-prettier
rev: a99a3fbe79a9d346cabd02a5e167ad0edafe616b # v2.3.0
hooks:
Expand Down
16 changes: 1 addition & 15 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,3 @@ pytest = "*"
pytest-dependency = "*"
pytest-mock = "*"
pytest-subtests = "*"
shellcheck-py = "*"
48 changes: 48 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
let
pkgs = import (builtins.fetchTarball {
name = "nixos-unstable-2024-10-17";
url = "https://github.com/nixos/nixpkgs/archive/a3c0b3b21515f74fd2665903d4ce6bc4dc81c77c.tar.gz";
sha256 = "1wn29537l343lb0id0byk0699fj0k07m1n2d7jx2n0ssax55vhwy";
}) { overlays = [ (_final: prev: { geos = prev.geos_3_11; }) ]; };
poetry2nix = import (builtins.fetchTarball {
url = "https://github.com/nix-community/poetry2nix/archive/2024.10.1637698.tar.gz";
sha256 = "08w14qxgn6rklfc83p8z6h91si854kl6nr1pjhdn8smfx7nw5819";
}) { inherit pkgs; };
poetryPackages = poetry2nix.mkPoetryPackages {
projectDir = ./.;
python = pkgs.python312;
overrides = poetry2nix.overrides.withDefaults (
final: prev: {
cryptography = prev.cryptography.overridePythonAttrs (
# TODO: Remove when <URL> is in poetry2nix
old: {
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [
final.distutils
];
}
);
}
);
};
pythonWithPackages = poetryPackages.python.withPackages (_ps: poetryPackages.poetryPackages);
in
pkgs.mkShell {
packages = [
pythonWithPackages
pkgs.bashInteractive
pkgs.cacert
pkgs.deadnix
pkgs.gcc # To install Python debugging in IDEA
pkgs.gdal
pkgs.gitFull
pkgs.nixfmt-rfc-style
pkgs.nodejs
pkgs.poetry
pkgs.shellcheck
pkgs.statix
pkgs.which
];
shellHook = ''
ln --force --no-target-directory --symbolic "${pkgs.lib.getExe pythonWithPackages}" python
'';
}
Loading