guix-commits
[Top][All Lists]
Advanced

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

04/04: gnu: python-lockfile: Update to 0.12.2.


From: Ben Woodcroft
Subject: 04/04: gnu: python-lockfile: Update to 0.12.2.
Date: Sun, 03 Apr 2016 06:08:20 +0000

benwoodcroft pushed a commit to branch master
in repository guix.

commit 692add53bcde80359c20ce17ae7b86aea18f5a21
Author: Ben Woodcroft <address@hidden>
Date:   Sun Apr 3 16:02:49 2016 +1000

    gnu: python-lockfile: Update to 0.12.2.
    
    * gnu/packages/python.scm (python-lockfile): Update to 0.12.2.
    [native-inputs]: Add python-pbr.
    (python2-lockfile): Update to 0.12.2.
    [native-inputs]: Add python2-setuptools, python2-pbr.
---
 gnu/packages/python.scm |   10 +++++++---
 1 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 2f2ef2f..66ed16a 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -712,7 +712,7 @@ concepts.")
 (define-public python-lockfile
   (package
     (name "python-lockfile")
-    (version "0.9.1")
+    (version "0.12.2")
     (source
      (origin
        (method url-fetch)
@@ -720,9 +720,11 @@ concepts.")
                            "lockfile-" version ".tar.gz"))
        (sha256
         (base32
-         "0iwif7i84gwpvrnpv4brshdk8j6l77smvknm8k3bg77mj6f5ini3"))))
+         "16gpx5hm73ah5n1079ng0vy381hl802v606npkx4x8nb0gg05vba"))))
     (build-system python-build-system)
     (arguments '(#:test-target "check"))
+    (native-inputs
+     `(("python-pbr" ,python-pbr)))
     (home-page "http://code.google.com/p/pylockfile/";)
     (synopsis "Platform-independent file locking module")
     (description
@@ -734,7 +736,9 @@ API for locking files.")
 (define-public python2-lockfile
   (let ((base (package-with-python2 (strip-python2-variant python-lockfile))))
     (package
-      (inherit base))))
+      (inherit base)
+      (native-inputs `(("python2-setuptools" ,python2-setuptools)
+                       ,@(package-native-inputs base))))))
 
 (define-public python-mock
   (package



reply via email to

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