gnu: python-freezegun: Update to 0.3.12.
* gnu/packages/check.scm (python-freezegun): Update to 0.3.12. [native-inputs]: Remove PYTHON-NOSE and PYTHON-COVERAGE. Add PYTHON-PYTEST. [arguments]: Use "pytest" instead of "nosetests" for running tests.
This commit is contained in:
parent
eed81080dc
commit
4e24e442f2
|
@ -2043,18 +2043,17 @@ create data based on random numbers and yet remain repeatable.")
|
|||
(define-public python-freezegun
|
||||
(package
|
||||
(name "python-freezegun")
|
||||
(version "0.3.11")
|
||||
(version "0.3.12")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "freezegun" version))
|
||||
(sha256
|
||||
(base32 "1nh0fzqjwg88n57k3qa8mxnmiwrr7lqyd5xvc96qn5g8zcxv8fg8"))))
|
||||
(base32 "1rx57v8ryjncjimg8hys9kx1r3rknvwcl4y340g20jn0sf69qk9a"))))
|
||||
(build-system python-build-system)
|
||||
(native-inputs
|
||||
`(("python-mock" ,python-mock)
|
||||
("python-nose" ,python-nose)
|
||||
("python-coverage" ,python-coverage)))
|
||||
("python-pytest" ,python-pytest)))
|
||||
(propagated-inputs
|
||||
`(("python-six" ,python-six)
|
||||
("python-dateutil" ,python-dateutil)))
|
||||
|
@ -2065,7 +2064,7 @@ create data based on random numbers and yet remain repeatable.")
|
|||
;; package does not include the Makefile.
|
||||
(replace 'check
|
||||
(lambda _
|
||||
(invoke "nosetests" "./tests/"))))))
|
||||
(invoke "pytest" "-vv"))))))
|
||||
(home-page "https://github.com/spulec/freezegun")
|
||||
(synopsis "Test utility for mocking the datetime module")
|
||||
(description
|
||||
|
|
Loading…
Reference in New Issue