master-thesis/python/energy_flow_proper/03_gaussian/flake.nix

24 lines
651 B
Nix
Raw Normal View History

2022-01-18 15:47:53 +01:00
{
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 {
2022-01-19 15:47:47 +01:00
name = "03_gaussian";
2022-01-18 15:47:53 +01:00
shellPackages = pkgs: with pkgs; [ pyright python3Packages.jupyter ];
shellOverride = (oldAttrs: {
shellHook = ''
2022-01-19 15:45:54 +01:00
#export PYTHONPATH=/home/hiro/src/hopsflow/$PYTHONPATH
'';
});
2022-01-18 15:47:53 +01:00
noPackage = true;
poetryArgs = {
projectDir = ./.;
};
});
}