guix-commits
[Top][All Lists]
Advanced

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

01/03: gnu: python-paramz: Update to 0.9.6.


From: guix-commits
Subject: 01/03: gnu: python-paramz: Update to 0.9.6.
Date: Sat, 4 May 2024 04:18:57 -0400 (EDT)

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

commit c4db08ce3f5f93e515f42f6853bd58d26b8153ad
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Sat May 4 10:14:15 2024 +0200

    gnu: python-paramz: Update to 0.9.6.
    
    * gnu/packages/python-science.scm (python-paramz): Update to 0.9.6.
    [build-system]: Use pyproject-build-system.
    [native-inputs]: Add python-nose.
    
    Change-Id: I62a2f7ecf600f48da74f4d233e108360a583d5ca
---
 gnu/packages/python-science.scm | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index c5e9a41ce2..6bfbdc9b71 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -2789,16 +2789,20 @@ heavily biased to machine learning scenarios.  It works 
on top of
 (define-public python-paramz
   (package
     (name "python-paramz")
-    (version "0.9.5")
+    (version "0.9.6")
     (source (origin
-              (method url-fetch)
-              (uri (pypi-uri "paramz" version))
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/sods/paramz";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "16hbh97kj6b1c2gw22rqnr3w3nqkszh9gj8vgx738gq81wf225q9"))))
-    (build-system python-build-system)
+                "1ywc2jzj40m6wmq227j3snxvp4434s0m1xk1abg6v6mr87pv2sa9"))))
+    (build-system pyproject-build-system)
     (propagated-inputs (list python-decorator python-numpy python-scipy
                              python-six))
+    (native-inputs (list python-nose))
     (home-page "https://github.com/sods/paramz";)
     (synopsis "The Parameterization Framework")
     (description



reply via email to

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