add rad_development_python to environment and add update instructions

This commit is contained in:
2024-08-03 00:21:44 -04:00
parent 7aaa10420f
commit 257e30abcb
12 changed files with 1183 additions and 41 deletions

View File

@ -5,9 +5,10 @@ from typing import Optional
from flupdt.common import bash_wrapper
import re
drv_re = re.compile(r'.*(/nix/store/.*\.drv).*')
drv_re = re.compile(r".*(/nix/store/.*\.drv).*")
def evaluate_output(path:str, output: str) -> Optional[str]:
def evaluate_output(path: str, output: str) -> Optional[str]:
logging.info(f"evaluating {output}")
out = bash_wrapper(f"nix eval {path}#{output}")
logging.debug(out[0])