This is an automated email from the git hooks/post-receive script.
efraim pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new dc9e8f2 gnu: python-fasteners: Update to 0.15.
dc9e8f2 is described below
commit dc9e8f2ed3cc568969e351f8bad84a6b36dacac6
Author: Efraim Flashner <[email protected]>
AuthorDate: Sun Jul 19 16:18:11 2020 +0300
gnu: python-fasteners: Update to 0.15.
* gnu/packages/python-xyz.scm (python-fasteners): Update to 0.15.
[propagated-inputs]: Move python-testtools ...
[native-inputs]: ... to here.
---
gnu/packages/python-xyz.scm | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 55a9bb3..c6afe0b 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -17240,19 +17240,20 @@ inferring type information using compile-time
introspection.")
(define-public python-fasteners
(package
(name "python-fasteners")
- (version "0.14.1")
+ (version "0.15")
(source
(origin
(method url-fetch)
(uri (pypi-uri "fasteners" version))
(sha256
(base32
- "063y20kx01ihbz2mziapmjxi2cd0dq48jzg587xdsdp07xvpcz22"))))
+ "1vzmz1xh38b84dv0f4hlp7arwmx8wjlih6lf964bpy8dnyk6s5rs"))))
(build-system python-build-system)
(propagated-inputs
`(("python-monotonic" ,python-monotonic)
- ("python-six" ,python-six)
- ("python-testtools" ,python-testtools)))
+ ("python-six" ,python-six)))
+ (native-inputs
+ `(("python-testtools" ,python-testtools)))
(home-page "https://github.com/harlowja/fasteners")
(synopsis "Python package that provides useful locks")
(description