[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#44077] [PATCH v2 6/7] gnu: Add python-poetry-core.
From: |
Tanguy Le Carrour |
Subject: |
[bug#44077] [PATCH v2 6/7] gnu: Add python-poetry-core. |
Date: |
Fri, 30 Oct 2020 19:17:56 +0100 |
* gnu/packages/python-xyz.scm (python-poetry-core): New variable.
---
gnu/packages/python-xyz.scm | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 234858e59e..ad9d271ebb 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -12944,6 +12944,26 @@ powerful API: thread-safety; decorator syntax; support
for memcached, redis,
database, file, dict stores. Cachy supports python versions 2.7+ and 3.2+.")
(license license:expat)))
+(define-public python-poetry-core
+ (package
+ (name "python-poetry-core")
+ (version "1.0.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "poetry-core" version))
+ (sha256
+ (base32 "1mgv276h1iphn5fqhp2sgkgd5d0c39hs33vgaf157x5ri7rlyrka"))))
+ (build-system python-build-system)
+ (home-page "https://github.com/python-poetry/poetry-core")
+ (synopsis "Poetry PEP 517 build back-end")
+ (description
+ "The @code{poetry-core} module provides a PEP 517 build back-end
+implementation developed for Poetry. This project is intended to be
+a light weight, fully compliant, self-contained package allowing PEP 517
+compatible build front-ends to build Poetry managed projects.")
+ (license license:expat)))
+
(define-public poetry
(package
(name "poetry")
--
2.29.1
- [bug#44077] [PATCH v3 1/2] gnu: Add python-poetry-core., (continued)
- [bug#44077] [PATCH v3 1/2] gnu: Add python-poetry-core., Tanguy Le Carrour, 2020/10/22
- [bug#44077] [WIP][PATCH 0/2] gnu: poetry: Update to 1.1.3., Tanguy Le Carrour, 2020/10/23
- [bug#44077] [PATCH v2 0/7] gnu: poetry: Update to 1.1.4., Tanguy Le Carrour, 2020/10/30
- [bug#44077] [PATCH v2 1/7] gnu: python-packaging: Update to 20.4., Tanguy Le Carrour, 2020/10/30
- [bug#44077] [PATCH v2 3/7] gnu: python-distlib: Update to 0.3.1., Tanguy Le Carrour, 2020/10/30
- [bug#44077] [PATCH v2 5/7] gnu: python-tomlkit: Update to 0.7.0., Tanguy Le Carrour, 2020/10/30
- [bug#44077] [PATCH v2 7/7] gnu: poetry: Update to 1.1.4., Tanguy Le Carrour, 2020/10/30
- [bug#44077] [PATCH v2 4/7] gnu: python-pip: Update to 20.2.4., Tanguy Le Carrour, 2020/10/30
- [bug#44077] [PATCH v2 2/7] gnu: python-virtualenv: Update to 20.1.0., Tanguy Le Carrour, 2020/10/30
- [bug#44077] [PATCH v2 6/7] gnu: Add python-poetry-core.,
Tanguy Le Carrour <=