[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/09: gnu: Add python-get-version.
From: |
guix-commits |
Subject: |
06/09: gnu: Add python-get-version. |
Date: |
Fri, 6 Mar 2020 03:16:59 -0500 (EST) |
rekado pushed a commit to branch master
in repository guix.
commit 2ceff35f077e942e97c9af63b067269c03f1e842
Author: Ricardo Wurmus <address@hidden>
AuthorDate: Fri Mar 6 08:55:44 2020 +0100
gnu: Add python-get-version.
* gnu/packages/python-xyz.scm (python-get-version): New variable.
---
gnu/packages/python-xyz.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index c003bef..58df879 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -7336,6 +7336,35 @@ designed to efficiently cope with extremely large
amounts of data.")
Python code formatter \"black\".")
(license license:expat)))
+(define-public python-get-version
+ (package
+ (name "python-get-version")
+ (version "2.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "get_version" version))
+ (sha256
+ (base32
+ "1g15jyx33vkxavv9hwv275cs4g9bp2i1y942raw3fxamq8kbaml1"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-pygments" ,python-pygments)
+ ("python-pytest" ,python-pytest)
+ ("python-pytest-black" ,python-pytest-black)
+ ("python-pytest-cov" ,python-pytest-cov)
+ ("python-setuptools" ,python-setuptools)
+ ("python-testpath" ,python-testpath)))
+ (home-page "https://github.com/flying-sheep/get_version")
+ (synopsis "Version helper in the spirit of versioneer")
+ (description
+ "This package provides a version helper that lets you automatically use
+the latest @code{vX.X.X} Git tag as the version in your Python package. It
+also supports getting the version from Python source distributions or, once
+your package is installed, via @code{pkg_resources} (part of
+@code{setuptools}).")
+ (license license:gpl3+)))
+
(define-public python-pyasn1
(package
(name "python-pyasn1")
- branch master updated (1d24cc6 -> fecd325), guix-commits, 2020/03/06
- 01/09: gnu: python-tables: Do not detect CPU features., guix-commits, 2020/03/06
- 02/09: gnu: python-tables: Use later hdf5 version., guix-commits, 2020/03/06
- 03/09: gnu: Add python-pathspec., guix-commits, 2020/03/06
- 04/09: gnu: python-black: Update to 19.10b0., guix-commits, 2020/03/06
- 05/09: gnu: Add python-pytest-black., guix-commits, 2020/03/06
- 06/09: gnu: Add python-get-version.,
guix-commits <=
- 07/09: gnu: Add python-legacy-api-wrap., guix-commits, 2020/03/06
- 09/09: gnu: python-aiohttp: Update to 3.6.2., guix-commits, 2020/03/06
- 08/09: gnu: python-scanpy: Update to 1.4.5.1., guix-commits, 2020/03/06