diff options
author | Vinicius Monego <monego@posteo.net> | 2024-05-13 20:52:07 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-10-24 10:59:58 +0100 |
commit | add8d159e8ebd788a3f8dfd141ef1cb627800aec (patch) | |
tree | 102cd5b2748d6e96e12dd0745a4a98eb95f0bdfc /gnu/packages | |
parent | 9d577f0f4c6a4f6df03bb6e8c0a845c2dcd6d65a (diff) | |
download | guix-add8d159e8ebd788a3f8dfd141ef1cb627800aec.tar guix-add8d159e8ebd788a3f8dfd141ef1cb627800aec.tar.gz |
gnu: Add python-calver.
* gnu/packages/python-build.scm (python-calver): New variable.
Change-Id: Icaf6d09519f792b42a5e0992b2e4fed4131b67f5
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/python-xyz.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 8ff8e3aab4..e16ff2fd80 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -3646,6 +3646,29 @@ metaclass-based @code{NamedTuple} implementation and a @code{NamedConstant} class.") (license license:bsd-3))) +(define-public python-calver + (package + (name "python-calver") + (version "2022.06.26") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/di/calver") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14l9kv9igcmp5k6d2ahnx6z4dn6zy5kykz95hkh0rkqswn8x79b1")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pretend python-pytest python-setuptools)) + (home-page "https://github.com/di/calver") + (synopsis "Setuptools extension for CalVer package versions") + (description + "The calver package is a setuptools extension for automatically defining +your Python package version as a calendar version.") + (license license:asl2.0))) + (define-public python-can (package (name "python-can") |