We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5249efe + 308dc21 commit 4f0c918Copy full SHA for 4f0c918
3 files changed
.envrc
@@ -0,0 +1 @@
1
+use nix
pyproject.toml
@@ -3,5 +3,5 @@
3
line-length = 100
4
skip-string-normalization = true
5
# default is per-file auto-detection
6
-target-version = ['py38']
7
-include = '\.py$'
+target-version = ['py313']
+include = '\.py$'
shell.nix
@@ -0,0 +1,13 @@
+# https://github.com/NixOS/nixpkgs/issues/205072
2
+{ pkgs ? import <nixpkgs> { } }:
+
+let
+ pythonEnv = pkgs.python3.withPackages (ps: with ps; [ websockify ]);
+in
+pkgs.mkShell {
8
+ packages = [
9
+ pythonEnv
10
+ pkgs.openldap
11
+ pkgs.cyrus_sasl
12
+ ];
13
+}
0 commit comments