mirror of
https://github.com/vale981/master-thesis
synced 2025-03-06 10:31:37 -05:00
25 lines
707 B
Nix
25 lines
707 B
Nix
{
|
|
description = "Calculating open system bath energy changes with HOPS and analytically.";
|
|
|
|
|
|
inputs = {
|
|
nixpkgs.url = "nixpkgs/nixos-unstable";
|
|
utils.url = "github:vale981/hiro-flake-utils";
|
|
};
|
|
|
|
outputs = { self, utils, nixpkgs, ... }:
|
|
(utils.lib.poetry2nixWrapper nixpkgs {
|
|
name = "master";
|
|
#noPackage = true;
|
|
shellPackages = pkgs: with pkgs; [ black pyright sshfs sage python3Packages.jupyter ];
|
|
shellOverride = (oldAttrs: {
|
|
shellHook = ''
|
|
echo "HI"
|
|
export PYTHONPATH=$PYTHONPATH:$(realpath ./energy_flow_proper)
|
|
'';
|
|
});
|
|
poetryArgs = {
|
|
projectDir = ./.;
|
|
};
|
|
});
|
|
}
|