diff options
author | Vivien Kraus <vivien@planete-kraus.eu> | 2022-02-07 00:20:22 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-02-13 01:00:03 +0100 |
commit | 79cd1f1b74cea2e8908f97cf6bcec78cccd8dbe0 (patch) | |
tree | 272581b7ea4950ebf669e3b88cc04d59e9acf6b1 /gnu/packages/python-xyz.scm | |
parent | bede51364da59aee4e525b0333447e4666792e46 (diff) | |
download | guix-79cd1f1b74cea2e8908f97cf6bcec78cccd8dbe0.tar.gz |
gnu: Add python-no-version.
* gnu/packages/python-xyz.scm (python-no-version): New variable.
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 918e4b805f..7d3a57c5de 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -25815,6 +25815,23 @@ function.") python-setuptools-scm python-pytest-cases python-pytest-harvest)))) +(define-public python-no-version + (package + (name "python-no-version") + (version "0.1.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "no_version" version)) + (sha256 + (base32 "1y58fkwg4s96hbz3hnqj2nd8a0pimrmpk4ry1z5pwzxlyx0k66rf")))) + (build-system python-build-system) + (home-page "https://github.com/prisae/no_version") + (synopsis "Package without __version__ number.") + (description "This package demonstrates an example of a package without a +__version__ number.") + (license license:cc0))) + (define-public python-frozendict (package (name "python-frozendict") |