1
1
Fork 0
mirror of https://github.com/the-nix-way/dev-templates synced 2024-06-01 22:16:31 +02:00
github.com_the-nix-way_dev-.../python/flake.nix

38 lines
843 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 = {
2022-08-20 12:06:53 +02:00
flake-utils.url = "github:numtide/flake-utils";
2022-07-31 22:33:40 +02:00
mach-nix.url = "github:/DavHau/mach-nix";
2022-08-20 12:06:53 +02:00
nixpkgs.url = "github:NixOS/nixpkgs";
2022-07-31 22:33:40 +02:00
};
2022-07-31 22:33:11 +02:00
outputs =
{ self
, flake-utils
, mach-nix
, nixpkgs
}:
2022-08-20 12:06:53 +02:00
flake-utils.lib.eachDefaultSystem (system:
let
overlays = [
(self: super: {
machNix = mach-nix.defaultPackage.${system};
python = super.python311;
})
];
2022-07-31 22:33:11 +02:00
pkgs = import nixpkgs { inherit overlays system; };
in
{
2022-10-12 23:42:34 +02:00
devShells.default = pkgs.mkShell {
2023-02-15 01:20:41 +01:00
packages = with pkgs; [ python machNix virtualenv ] ++
(with pkgs.python311Packages; [ pip ]);
2022-07-31 22:33:11 +02:00
shellHook = ''
${pkgs.python}/bin/python --version
'';
};
});
2022-07-31 22:33:11 +02:00
}