master-thesis/python/energy_flow_proper/05_gaussian_two_baths/flake.nix

27 lines
694 B
Nix
Raw Normal View History

2022-01-20 14:09:59 +01:00
{
description = "Energy flow with a two HOs coupled to two baths and each other.";
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
utils.url = "github:vale981/hiro-flake-utils";
};
outputs = { self, utils, nixpkgs, ... }:
(utils.lib.poetry2nixWrapper nixpkgs {
2022-02-05 15:21:53 +01:00
name = "05_gaussian_twobath_new";
shellPackages = pkgs: with pkgs; [ pyright python39Packages.jupyter ];
python = pkgs: pkgs.python39;
2022-01-20 14:09:59 +01:00
shellOverride = (oldAttrs: {
shellHook = ''
2022-02-05 16:33:56 +01:00
export PYTHONPATH=/home/hiro/src/hops/:$PYTHONPATH
2022-01-20 14:09:59 +01:00
'';
});
2022-02-04 15:33:55 +01:00
2022-01-20 14:09:59 +01:00
noPackage = true;
poetryArgs = {
projectDir = ./.;
};
});
}