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

24 lines
655 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 {
name = "04_gaussian_nonzero";
shellPackages = pkgs: with pkgs; [ pyright python3Packages.jupyter ];
shellOverride = (oldAttrs: {
shellHook = ''
#export PYTHONPATH=/home/hiro/src/hopsflow/$PYTHONPATH
'';
});
noPackage = true;
poetryArgs = {
projectDir = ./.;
};
});
}