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.master
parent
1804527ab0
commit
692add53bc
|
@ -712,7 +712,7 @@ concepts.")
|
||||||
(define-public python-lockfile
|
(define-public python-lockfile
|
||||||
(package
|
(package
|
||||||
(name "python-lockfile")
|
(name "python-lockfile")
|
||||||
(version "0.9.1")
|
(version "0.12.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -720,9 +720,11 @@ concepts.")
|
||||||
"lockfile-" version ".tar.gz"))
|
"lockfile-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0iwif7i84gwpvrnpv4brshdk8j6l77smvknm8k3bg77mj6f5ini3"))))
|
"16gpx5hm73ah5n1079ng0vy381hl802v606npkx4x8nb0gg05vba"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments '(#:test-target "check"))
|
(arguments '(#:test-target "check"))
|
||||||
|
(native-inputs
|
||||||
|
`(("python-pbr" ,python-pbr)))
|
||||||
(home-page "http://code.google.com/p/pylockfile/")
|
(home-page "http://code.google.com/p/pylockfile/")
|
||||||
(synopsis "Platform-independent file locking module")
|
(synopsis "Platform-independent file locking module")
|
||||||
(description
|
(description
|
||||||
|
@ -734,7 +736,9 @@ API for locking files.")
|
||||||
(define-public python2-lockfile
|
(define-public python2-lockfile
|
||||||
(let ((base (package-with-python2 (strip-python2-variant python-lockfile))))
|
(let ((base (package-with-python2 (strip-python2-variant python-lockfile))))
|
||||||
(package
|
(package
|
||||||
(inherit base))))
|
(inherit base)
|
||||||
|
(native-inputs `(("python2-setuptools" ,python2-setuptools)
|
||||||
|
,@(package-native-inputs base))))))
|
||||||
|
|
||||||
(define-public python-mock
|
(define-public python-mock
|
||||||
(package
|
(package
|
||||||
|
|
Reference in New Issue