~ruther/guix-local

692add53bcde80359c20ce17ae7b86aea18f5a21 — Ben Woodcroft 10 years ago 1804527
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.
1 files changed, 7 insertions(+), 3 deletions(-)

M gnu/packages/python.scm
M gnu/packages/python.scm => gnu/packages/python.scm +7 -3
@@ 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