1
1
Fork 0
mirror of https://github.com/the-nix-way/dev-templates synced 2024-05-18 04:06:34 +02:00
github.com_the-nix-way_dev-.../python/flake.nix

26 lines
742 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
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 {
2024-04-15 20:46:09 +02:00
venvDir = "venv";
packages = with pkgs; [ python311 ] ++
(with pkgs.python311Packages; [
pip
venvShellHook
]);
};
});
};
2022-07-31 22:33:11 +02:00
}