initial commit

This commit is contained in:
rus07tam 2025-10-26 16:26:46 +00:00
commit 19c9b9537d
115 changed files with 4940 additions and 0 deletions

39
flake.nix Normal file
View file

@ -0,0 +1,39 @@
{
description = "Snakia dev shell";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{
nixpkgs,
flake-utils,
...
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs {
inherit system;
};
in
{
devShells.default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
python312
];
buildInputs = with pkgs; [
black
nixfmt
uv
isort
mypy
python312Packages.pylint
];
};
}
);
}