flake: Introduce pytec to PYTHONPATH in devShell

For easier testing of pytec client code in the shell.
This commit is contained in:
atse 2024-10-28 18:05:59 +08:00
parent 9af86be674
commit 6ec05808ce

View File

@ -63,11 +63,10 @@
version = "0.0.0";
src = "${self}/pytec";
propagatedBuildInputs =
with pkgs.python3Packages; [
numpy
matplotlib
];
propagatedBuildInputs = with pkgs.python3Packages; [
numpy
matplotlib
];
};
in
{
@ -95,6 +94,9 @@
numpy
matplotlib
]);
shellHook = ''
export PYTHONPATH=`git rev-parse --show-toplevel`/pytec:$PYTHONPATH
'';
};
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.nixfmt-rfc-style;