unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Question about  (properties `((python2-variant . ,(delay XXX)))) and name resolution
@ 2016-07-19 17:47 Danny Milosavljevic
  2016-07-20  3:58 ` Question about (properties `((python2-variant . , (delay " Leo Famulari
  0 siblings, 1 reply; 9+ messages in thread
From: Danny Milosavljevic @ 2016-07-19 17:47 UTC (permalink / raw)
  To: guix-devel

Hi,

in the process of packaging ptpython I ran into the following problem:

   ;;; Failed to autoload canonical-package in (gnu packages base):
   ;;; ERROR: Unbound variable: ptpython-2

... while I did the following patch to gnu/packages/python.scm :

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index b9d61dd..5bb6b27 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -9750,3 +9750,34 @@ characters, mouse support, and auto suggestions.")
       (native-inputs
        `(("python2-setuptools" ,python2-setuptools)
          ,@(package-native-inputs base))))))
+
+(define-public ptpython
+  (package
+    (name "ptpython")
+    (version "0.34")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "ptpython" version))
+        (sha256
+          (base32
+            "1mmbiyzf0n8hm7z2a562x7w5cbl6jc0zsk6vp40q1z4cyblv1k13"))))
+    (build-system python-build-system)
+    (inputs
+      `(("python-docopt" ,python-docopt)
+        ("python-jedi" ,python-jedi)
+        ("python-prompt-toolkit" ,python-prompt-toolkit)
+        ("python-pygments" ,python-pygments)
+        ("python-setuptools" ,python-setuptools)))
+    (home-page
+      "https://github.com/jonathanslenders/ptpython")
+    (synopsis
+      "Python REPL build on top of prompt_toolkit")
+    (description
+      "Python REPL build on top of prompt_toolkit")
+    (license bsd-3)
+    (properties `((python2-variant . ,(delay ptpython-2))))
+))
+
+(define-public ptpython-2
+  (package-with-python2 ptpython))

What does it mean?

^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2016-07-22 14:15 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-19 17:47 Question about (properties `((python2-variant . ,(delay XXX)))) and name resolution Danny Milosavljevic
2016-07-20  3:58 ` Question about (properties `((python2-variant . , (delay " Leo Famulari
2016-07-20  7:26   ` Question about (properties `((python2-variant . ,(delay " Danny Milosavljevic
2016-07-20 10:15     ` Question about (properties `((python2-variant . , (delay " Ricardo Wurmus
2016-07-20 21:10       ` Question about (properties `((python2-variant . ,(delay " Danny Milosavljevic
2016-07-20 10:17     ` Question about (properties `((python2-variant . , (delay " Ludovic Courtès
2016-07-22  8:59       ` Installing incompatible major versions of packages alongside each other Danny Milosavljevic
2016-07-22 13:02         ` Ludovic Courtès
2016-07-22 14:14           ` Leo Famulari

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).