Skip to content
Merged
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
1 change: 1 addition & 0 deletions .envrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
use nix
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
line-length = 100
skip-string-normalization = true
# default is per-file auto-detection
target-version = ['py38']
include = '\.py$'
target-version = ['py313']
include = '\.py$'
13 changes: 13 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# https://github.com/NixOS/nixpkgs/issues/205072
{ pkgs ? import <nixpkgs> { } }:

let
pythonEnv = pkgs.python3.withPackages (ps: with ps; [ websockify ]);
in
pkgs.mkShell {
packages = [
pythonEnv
pkgs.openldap
pkgs.cyrus_sasl
];
}