master-thesis/python/energy_flow_proper/07_one_bath_systematics/flake.nix
2022-03-23 12:55:05 +01:00

30 lines
976 B
Nix

{
description = "Some basic systematic studies of the heatflow with
one bath for the masters thesis write-up.";
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
utils.url = "github:vale981/hiro-flake-utils";
};
outputs = { self, utils, nixpkgs, ... }:
(utils.lib.poetry2nixWrapper nixpkgs {
name = "07_one_bath_systematics";
shellPackages = pkgs: with pkgs; [ pyright python39Packages.jupyter sshfs ];
python = pkgs: pkgs.python39;
shellOverride = (oldAttrs: {
shellHook = ''
export PYTHONPATH=/home/hiro/src/two_qubit_model/:$PYTHONPATH
export PYTHONPATH=/home/hiro/src/hops/:$PYTHONPATH
export PYTHONPATH=/home/hiro/src/hopsflow/:$PYTHONPATH
# export PYTHONPATH=/home/hiro/src/stocproc/:$PYTHONPATH
'';
});
noPackage = true;
poetryArgs = {
projectDir = ./.;
};
});
}