From 775def4bf140f1b7e84f671b28c2c05bc897d4ea Mon Sep 17 00:00:00 2001 From: Vivien Kraus Date: Mon, 7 Feb 2022 00:20:22 +0100 Subject: [PATCH v6 22/28] gnu: Add python-no-version. * gnu/packages/python-xyz.scm (python-no-version): New variable. --- gnu/packages/python-xyz.scm | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index ff9d06595a..7bdb237c14 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -27511,6 +27511,23 @@ (define-public python-pytest-steps 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") -- 2.36.1