master-thesis/python/energy_flow_proper/07_one_bath_systematics/flake.nix

31 lines
982 B
Nix
Raw Normal View History

2022-03-21 16:16:44 +01:00
{
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 = ./.;
};
});
}