From e916122750929120d701459f34805cfe164c2db3 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 2 Jun 2020 15:03:04 -0400 Subject: [PATCH] Fix #3273: install nose from emacsattic Nose was moved from https://github.com/emacsmirror to https://github.com/emacsattic, but https://github.com/emacsmirror/epkgs hasn't updated their emacsattic index yet, so folks are getting no-package-found errors from straight. --- modules/lang/python/packages.el | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/modules/lang/python/packages.el b/modules/lang/python/packages.el index 47d141c4d..41796d25e 100644 --- a/modules/lang/python/packages.el +++ b/modules/lang/python/packages.el @@ -28,8 +28,11 @@ (package! poetry :pin "6dcc9d22ca")) ;; Testing frameworks -(package! nose :pin "f852829751") -(package! python-pytest :pin "09ad688df2") +(package! nose + ;; REVIEW Remove this when emacsmirror/epkgs updates its emacsattic index + :recipe (:host github :repo "emacsattic/nose") + :pin "f8528297519eba911696c4e68fa88892de9a7b72") +(package! python-pytest :pin "09ad688df207ee9b02c990d3897a9e2841931d97") ;; Import managements (package! pyimport :pin "a6f63cf7ed")