[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#71540] [PATCH 2/8] gnu: Add python-poetry-plugin-export.
From: |
Antero Mejr |
Subject: |
[bug#71540] [PATCH 2/8] gnu: Add python-poetry-plugin-export. |
Date: |
Fri, 14 Jun 2024 20:42:34 +0000 |
* gnu/packages/python-xyz.scm (python-poetry-plugin-export): New variable.
Change-Id: Idd7884de2d1e300fce6fea641de44219bf971293
---
gnu/packages/python-xyz.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 6c246c5eff..3231fc9729 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -21529,6 +21529,31 @@ (define-public python-installer
abstractions for handling wheels and installing packages from wheels.")
(license license:expat)))
+(define-public python-poetry-plugin-export
+ (hidden-package
+ (package
+ (name "python-poetry-plugin-export")
+ (version "1.8.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "poetry_plugin_export" version))
+ (sha256
+ (base32 "0qgw6w4xaw7cz9ykw376c5hcg9v2k30lnmna6pc9b4ymhn51d9hz"))))
+ (build-system pyproject-build-system)
+ ;; Work around the circular dependency introduced by the Poetry devs.
+ (arguments (list #:tests? #f
+ #:phases #~(modify-phases %standard-phases
+ (delete 'sanity-check))))
+ (native-inputs (list python-poetry-core))
+ (home-page "https://python-poetry.org/")
+ (synopsis "Poetry plugin to export dependencies")
+ (description "This package provides a Poetry plugin that allows the
+export of locked packages to various formats. This plugin provides the same
+features as the existing @code{export} command of Poetry which it will
+eventually replace.")
+ (license license:expat))))
+
(define-public poetry
(package
(name "poetry")
--
2.45.1
- [bug#71540] [PATCH 3/7] gnu: Add python-poetry-plugin-export-minimal., (continued)
- [bug#71540] [PATCH 3/7] gnu: Add python-poetry-plugin-export-minimal., Antero Mejr, 2024/06/13
- [bug#71540] [PATCH 4/7] gnu: Add python-rapidfuzz., Antero Mejr, 2024/06/13
- [bug#71540] [PATCH 5/7] gnu: Add python-poetry-core-next., Antero Mejr, 2024/06/13
- [bug#71540] [PATCH 6/7] gnu: python-cleo: Update to 2.1.0., Antero Mejr, 2024/06/13
- [bug#71540] [PATCH 7/7] gnu: poetry: Update to 1.7.1., Antero Mejr, 2024/06/13
- [bug#71540] [PATCH 0/5] gnu: poetry: Update to 1.7.1., Sharlatan Hellseher, 2024/06/13
- [bug#71540] [PATCH 0/5] gnu: poetry: Update to 1.7.1., Tanguy LE CARROUR, 2024/06/14
- [bug#71540] [PATCH 2/8] gnu: Add python-poetry-plugin-export.,
Antero Mejr <=
- [bug#71540] [PATCH 1/8] gnu: Add python-installer., Antero Mejr, 2024/06/14
- [bug#71540] [PATCH 3/8] gnu: python-poetry-core: Update to 1.9.0., Antero Mejr, 2024/06/14
- [bug#71540] [PATCH 4/8] gnu: poetry: Update to 1.8.3., Antero Mejr, 2024/06/14
- [bug#71540] [PATCH 5/8] gnu: python-betamax: Update to 0.9.0., Antero Mejr, 2024/06/14
- [bug#71540] [PATCH 6/8] gnu: python-requests-toolbelt: Update to 1.0.0., Antero Mejr, 2024/06/14
- [bug#71540] [PATCH 7/8] gnu: python-jsonpickle: Update to 3.2.1., Antero Mejr, 2024/06/14
- [bug#71540] [PATCH 8/8] gnu: Remove python-poetry-core-1.0., Antero Mejr, 2024/06/14