guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

11/57: gnu: Add python-time-machine.


From: guix-commits
Subject: 11/57: gnu: Add python-time-machine.
Date: Thu, 19 Dec 2024 06:31:36 -0500 (EST)

rekado pushed a commit to branch python-team
in repository guix.

commit a7630007a858efd806f30c2b9d25401f566c729f
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Mon Dec 16 16:43:43 2024 +0100

    gnu: Add python-time-machine.
    
    * gnu/packages/python-check.scm (python-time-machine): New variable.
    
    Change-Id: I5fce1caf7e659ae349de765a31cc78195d16d703
---
 gnu/packages/python-check.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index a1b320df1e..f42bf560e3 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -55,6 +55,7 @@
   #:use-module (gnu packages python-web)
   #:use-module (gnu packages python-xyz)
   #:use-module (gnu packages qt)
+  #:use-module (gnu packages time)
   #:use-module (gnu packages version-control)
   #:use-module (gnu packages web)
   #:use-module (gnu packages xml)
@@ -2907,6 +2908,24 @@ Python environments, similar to @code{tox}.  Unlike tox, 
Nox uses a standard
 Python file for configuration.")
     (license license:asl2.0)))
 
+(define-public python-time-machine
+  (package
+    (name "python-time-machine")
+    (version "2.16.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "time_machine" version))
+       (sha256
+        (base32 "1qn7cj9lx3m7pwa8ak1106f9c54yvpa996x84gfqmyfjfg1ar6aa"))))
+    (build-system pyproject-build-system)
+    (propagated-inputs (list python-dateutil))
+    (native-inputs (list python-setuptools python-wheel))
+    (home-page "https://github.com/adamchainz/time-machine";)
+    (synopsis "Travel through time in your tests.")
+    (description "This package lets you set a different time for your tests.")
+    (license license:expat)))
+
 (define-public python-tox
   (package
     (name "python-tox")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]