~ruther/guix-local

db3e631db8fe0d6c833974ed556bddd5d13ee0f8 — Marius Bakke 8 years ago 2441239
gnu: python-monotonic: Update to 1.4.

* gnu/packages/time.scm (python-monotonic): Update to 1.4.
[source]: Use PYPI-URI.
[arguments]: Explicitly disable tests.
1 files changed, 4 insertions(+), 6 deletions(-)

M gnu/packages/time.scm
M gnu/packages/time.scm => gnu/packages/time.scm +4 -6
@@ 264,18 264,16 @@ ISO 8601 dates, time and duration.")
(define-public python-monotonic
  (package
    (name "python-monotonic")
    (version "0.3")
    (version "1.4")
    (source
     (origin
       (method url-fetch)
       (uri (string-append
             "https://pypi.python.org/packages/source/m/monotonic/monotonic-"
             version
             ".tar.gz"))
       (uri (pypi-uri "monotonic" version))
       (sha256
        (base32
         "0yz0bcbwx8r2c01czzfpbrxddynxyk9k95jj8h6sgcb7xmfvl998"))))
         "110zd5ld3nchdjds34r95lzs1csmmv81pli2px8l1k8qnpai29m0"))))
    (build-system python-build-system)
    (arguments '(#:tests? #f))          ;no tests
    (home-page "https://github.com/atdt/monotonic")
    (synopsis "Implementation of time.monotonic() for Python 2 & < 3.3")
    (description