Initial commit

This commit is contained in:
2026-04-24 19:59:30 +02:00
commit 9870120ea4
5 changed files with 44 additions and 0 deletions

11
flake.nix Normal file
View File

@@ -0,0 +1,11 @@
{
description = "git-maintainer-tools";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
outputs = { self, nixpkgs }:
let system = "x86_64-linux"; pkgs = import nixpkgs { inherit system; };
in {
devShells.${system}.default = pkgs.mkShell {
packages = with pkgs; [ python312 python312Packages.pytest python312Packages.ruff ];
};
};
}