study-docker-repro-longevity/flake.nix
Quentin Guilloteau e42b87111f add nix flake
2024-07-09 18:36:38 +02:00

27 lines
571 B
Nix

{
description = "Flake study docker longevity";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/24.05";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
devShells = {
default = pkgs.mkShell {
packages = with pkgs; [
(python3.withPackages (ps: with ps; [
requests
pyyaml
]))
];
};
};
});
}