dotnet: version 9 + added python *especially py2cfg for static analysis)

This commit is contained in:
2025-05-20 22:40:27 +03:00
parent c2d8d76531
commit 1f8d3db4f9
2 changed files with 9 additions and 1 deletions

8
python.nix Normal file
View File

@@ -0,0 +1,8 @@
let pkgs = import (fetchTarball "channel:nixpkgs-unstable") { };
in pkgs.mkShell {
packages =
[ (pkgs.python3.withPackages (python-pkgs: [ python-pkgs.py2cfg ])) ];
shellHook = ''
exec zsh
'';
}