master-thesis/python/energy_flow_proper/04_gaussian_nonzero/flake.nix

24 lines
662 B
Nix
Raw Normal View History

2021-12-11 21:34:55 +01:00
{
2022-01-19 15:52:00 +01:00
description = "Finite temperature energy flow with a single qubit coupled to a bath.";
2021-12-11 21:34:55 +01:00
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
2022-01-19 15:52:00 +01:00
utils.url = "github:vale981/hiro-flake-utils";
2021-12-11 21:34:55 +01:00
};
2022-01-19 15:52:00 +01:00
outputs = { self, utils, nixpkgs, ... }:
(utils.lib.poetry2nixWrapper nixpkgs {
name = "04_gaussian_nonzero";
shellPackages = pkgs: with pkgs; [ pyright python3Packages.jupyter ];
shellOverride = (oldAttrs: {
shellHook = ''
2022-01-20 16:36:55 +01:00
#export PYTHONPATH=/home/hiro/src/hopsflow/:$PYTHONPATH
2022-01-19 15:52:00 +01:00
'';
});
noPackage = true;
poetryArgs = {
projectDir = ./.;
};
});
2021-12-11 21:34:55 +01:00
}