master-thesis/python/energy_flow_proper/02_finite_temperature/flake.nix

18 lines
485 B
Nix

{
description = "Zero temperature energy flow with a single qubit coupled to a bath.";
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
utils.url = "github:vale981/hiro-flake-utils";
};
outputs = { self, utils, nixpkgs, ... }:
(utils.lib.poetry2nixWrapper nixpkgs {
name = "01_zero_temp";
shellPackages = pkgs: with pkgs; [ pyright python3Packages.jupyter ];
noPackage = true;
poetryArgs = {
projectDir = ./.;
};
});
}