[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#73336] [PATCH 1/2] gnu: Add emacs-pythonic.
From: |
Rostislav Svoboda |
Subject: |
[bug#73336] [PATCH 1/2] gnu: Add emacs-pythonic. |
Date: |
Wed, 18 Sep 2024 16:29:30 +0200 |
* gnu/packages/emacs-xyz.scm (emacs-pythonic): New variable.
Change-Id: I6612cd17406397024139fa4b69ae3ec17be2877c
---
gnu/packages/emacs-xyz.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 9138fefa6d..1469148949 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -11024,6 +11024,32 @@ (define-public emacs-python-environment
"This package permits automated installation of tools written in Python.")
(license license:gpl3+)))
+(define-public emacs-pythonic
+ (let ((commit "c1e5643e044f1faaf6ecfadc719b981c048aeb79")
+ (revision "0"))
+ (package
+ (name "emacs-pythonic")
+ (version (git-version "0.2" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/proofit404/pythonic")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1bl2ds73g59v8q90kmjpchvzqrjdli3hmigzw5gv2yl548p7yppb"))))
+ (build-system emacs-build-system)
+ (propagated-inputs (list emacs-f emacs-s emacs-tramp))
+ (home-page "https://github.com/proofit404/pythonic")
+ (synopsis "Utility functions for writing Pythonic Emacs package.")
+ (description
+ "The Pythonic Emacs package provides function for convenient running
+Python on different platforms on local and remote hosts including Docker
+containers and Vagrant virtual machines. To use Pythonic with Docker you need
+to install docker-tramp Emacs package.")
+ (license license:gpl3+))))
+
(define-public emacs-jedi
(package
(name "emacs-jedi")
base-commit: 1b6ce1796abdf497f61f426d61339318f4f4f23d
--
2.46.0
- [bug#73336] [PATCH 1/2] gnu: Add emacs-pythonic.,
Rostislav Svoboda <=