guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: python-pastedeploy: Update to 2.1.0


From: guix-commits
Subject: 01/02: gnu: python-pastedeploy: Update to 2.1.0
Date: Sat, 25 Apr 2020 16:42:18 -0400 (EDT)

ngz pushed a commit to branch master
in repository guix.

commit 82bd276d604785725116976b5388b40d679e5742
Author: Holger Peters <address@hidden>
AuthorDate: Fri Apr 24 20:38:24 2020 +0200

    gnu: python-pastedeploy: Update to 2.1.0
    
    * gnu/packages/python-web.scm (python-pastedeploy): Update to 2.1.0.
    [arguments]: Add test-target.
    [native-inputs]: Replace python-nose with python-pytest and 
python-pytest-runner.
---
 gnu/packages/python-web.scm | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 1d99239..9f8bcdc 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -34,6 +34,7 @@
 ;;; Copyright © 2020 Jakub Kądziołka <address@hidden>
 ;;; Copyright © 2020 Evan Straw <address@hidden>
 ;;; Copyright © 2020 Alexandros Theodotou <address@hidden>
+;;; Copyright © 2020 Holger Peters <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1717,17 +1718,19 @@ and to spawn subprocesses to handle requests.")
 (define-public python-pastedeploy
   (package
     (name "python-pastedeploy")
-    (version "1.5.2")
+    (version "2.1.0")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "PasteDeploy" version))
        (sha256
-        (base32
-         "1jz3m4hq8v6hyhfjz9425nd3nvn52cvbfipdcd72krjmla4qz1fm"))))
+        (base32 "16qsq5y6mryslmbp5pn35x4z8z3ndp5rpgl42h226879nrw9hmg7"))))
     (build-system python-build-system)
+    (arguments
+     '(#:test-target "pytest"))
     (native-inputs
-     `(("python-nose" ,python-nose)))
+     `(("python-pytest" ,python-pytest)
+       ("python-pytest-runner" ,python-pytest-runner)))
     (home-page "https://pylonsproject.org/";)
     (synopsis
      "Load, configure, and compose WSGI applications and servers")



reply via email to

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