dev-templates/python/flake.nix

30 lines
741 B
Nix
Raw Permalink Normal View History

2022-07-31 22:33:11 +02:00
{
2022-08-01 00:00:58 +02:00
description = "A Nix-flake-based Python development environment";
2022-07-31 22:33:11 +02:00
2023-12-21 19:45:59 +01:00
inputs.nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1.*.tar.gz";
2023-03-06 12:28:29 +01:00
2024-04-27 15:02:27 +02:00
outputs = {
self,
nixpkgs,
}: let
supportedSystems = ["x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin"];
forEachSupportedSystem = f:
nixpkgs.lib.genAttrs supportedSystems (system:
f {
pkgs = import nixpkgs {inherit system;};
});
in {
devShells = forEachSupportedSystem ({pkgs}: {
default = pkgs.mkShell {
packages = with pkgs;
[python311]
++ (with pkgs.python311Packages; [
pip
python-lsp-server
2024-09-10 10:56:41 +02:00
python-lsp-ruff
2024-04-27 15:02:27 +02:00
]);
};
});
};
2022-07-31 22:33:11 +02:00
}