dev-templates/python/flake.nix

30 lines
631 B
Nix
Raw 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
2022-07-31 22:33:40 +02:00
inputs = {
2023-03-06 12:28:29 +01:00
nixpkgs.url = "github:NixOS/nixpkgs/release-22.11";
2022-08-20 12:06:53 +02:00
flake-utils.url = "github:numtide/flake-utils";
2022-07-31 22:33:40 +02:00
};
2022-07-31 22:33:11 +02:00
outputs =
{ self
2023-03-06 12:28:29 +01:00
, nixpkgs
, flake-utils
}:
2023-03-06 12:28:29 +01:00
2022-08-20 12:06:53 +02:00
flake-utils.lib.eachDefaultSystem (system:
let
2023-07-14 00:24:38 +02:00
pkgs = import nixpkgs { inherit system; };
in
{
2022-10-12 23:42:34 +02:00
devShells.default = pkgs.mkShell {
2023-07-14 00:24:38 +02:00
packages = with pkgs; [ python311 virtualenv ] ++
(with pkgs.python311Packages; [ pip ]);
2022-07-31 22:33:11 +02:00
shellHook = ''
2023-07-14 00:24:38 +02:00
${pkgs.python311}/bin/python --version
'';
};
});
2022-07-31 22:33:11 +02:00
}