mirror of
https://github.com/vale981/master-thesis
synced 2025-03-09 04:36:39 -04:00
31 lines
982 B
Nix
31 lines
982 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 = ./.;
|
||
|
};
|
||
|
});
|
||
|
}
|