559559 #:recursive? #t
560560 #:select? (git-predicate %source-dir)))
561561 (build-system python-build-system)
562+ (arguments (list #:tests? #f))
562563 (native-inputs (list gnu-make
563564 git
564565 emacs
@@ -654,11 +655,11 @@ guix-dev-container:
654655
655656.PHONY: guix-dev-container-ipython
656657guix-dev-container-ipython:
657- $(GUIX-DEV-CONTAINER) -- ipython -- no-autoindent
658+ $(GUIX-DEV-CONTAINER) -- sh -c "unset PYTHONSAFEPATH; python3 -m IPython -- no-autoindent"
658659
659660.PHONY: guix-container
660661guix-container:
661- $(GUIX-CONTAINER) python-ipython -- rebuild-cache
662+ $(GUIX-CONTAINER) -- sh -c "unset PYTHONSAFEPATH; python3 -m IPython -- rebuild-cache --no-autoindent"
662663
663664.PHONY: requirements.txt
664665requirements.txt:
@@ -674,7 +675,7 @@ docker-dev-container:
674675
675676.PHONY: docker-dev-container-ipython
676677docker-dev-container-ipython:
677- $(DOCKER-DEV-CONTAINER) ipython --no-autoindent
678+ $(DOCKER-DEV-CONTAINER) python3 -m IPython --no-autoindent
678679
679680.PHONY: docker-container
680681docker-container:
@@ -717,15 +718,15 @@ guix-dev-container-ports-serial:
717718
718719.PHONY: guix-dev-container-ports-ipython
719720guix-dev-container-ports-ipython:
720- $(GUIX-DEV-CONTAINER-PORTS) -- ipython -- no-autoindent
721+ $(GUIX-DEV-CONTAINER-PORTS) -- sh -c "unset PYTHONSAFEPATH; python3 -m IPython -- no-autoindent"
721722
722723.PHONY: guix-container-ports
723724guix-container-ports:
724- $(GUIX-CONTAINER-PORTS) python-ipython -- rebuild-cache
725+ $(GUIX-CONTAINER-PORTS) -- sh -c "unset PYTHONSAFEPATH; python3 -m IPython -- rebuild-cache --no-autoindent"
725726
726727.PHONY: docker-dev-container-port-ipython
727728docker-dev-container-port-ipython:
728- $(DOCKER-DEV-CONTAINER-PORT) ipython --no-autoindent
729+ $(DOCKER-DEV-CONTAINER-PORT) python3 -m IPython --no-autoindent
729730
730731.PHONY: docker-container-port
731732docker-container-port:
0 commit comments