me
/
guix
Archived
1
0
Fork 0

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.
master
Efraim Flashner 2020-07-19 16:18:11 +03:00
parent 4dfbebdb64
commit dc9e8f2ed3
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 5 additions and 4 deletions

View File

@ -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