all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#62080] [PATCH] gnu: Add python-mozilla-version.
@ 2023-03-09 16:49 Adam Faiz via Guix-patches via
  0 siblings, 0 replies; only message in thread
From: Adam Faiz via Guix-patches via @ 2023-03-09 16:49 UTC (permalink / raw)
  To: 62080

 From db5ef591064fa34751e6ef7ff53eba3fcd2d578f Mon Sep 17 00:00:00 2001
Message-Id: <db5ef591064fa34751e6ef7ff53eba3fcd2d578f.1678379861.git.adam.faiz@disroot.org>
In-Reply-To: <f788ce8ebc205a6e05bcc270865d793d94bf51e9.1678379861.git.adam.faiz@disroot.org>
References: <f788ce8ebc205a6e05bcc270865d793d94bf51e9.1678379861.git.adam.faiz@disroot.org>
From: AwesomeAdam54321 <adam.faiz@disroot.org>
Date: Thu, 9 Mar 2023 22:13:06 +0800
Subject: [PATCH] gnu: Add python-mozilla-version.

* gnu/packages/python-xyz.scm (python-mozilla-version): New variable.
---
  gnu/packages/python-xyz.scm | 25 +++++++++++++++++++++++++
  1 file changed, 25 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 2a5732fdad..37cd6fb0af 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -3639,6 +3639,31 @@ (define-public python-mozilla-repo-urls
    The intent is to centralize URLs parsing.")
      (license license:mpl2.0)))
  
+(define-public python-mozilla-version
+  (package
+    (name "python-mozilla-version")
+    (version "1.2.0")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "mozilla-version" version))
+              (sha256
+               (base32
+                "1dl08bpk97rcjhd1zg8ahw1kbc3ingkpmflmdx4z476a349w82xk"))))
+    (build-system python-build-system)
+    (native-inputs
+     (list python-pytest))
+    (propagated-inputs
+     (list python-attrs
+           python-future))
+    (home-page "https://github.com/mozilla-releng/mozilla-version")
+    (synopsis
+     "Library for processing Firefox versions numbers")
+    (description
+     "This package processes Firefox versions numbers.
+  It tells whether they are valid or not, whether they are nightlies or regular
+releases, whether this version precedes that other.")
+    (license license:mpl2.0)))
+
  (define-public python-py
    (package
      (name "python-py")
-- 
2.39.2





^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2023-03-09 16:50 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-09 16:49 [bug#62080] [PATCH] gnu: Add python-mozilla-version Adam Faiz via Guix-patches via

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.