me
/
guix
Archived
1
0
Fork 0

gnu: python-traitlets: Update to 4.1.0.

* gnu/packages/python.scm (python-traitlets): Update to 4.1.0.
[native-inputs]: Add python-mock.
master
Efraim Flashner 2016-02-25 20:45:36 +02:00
parent c6ebd40da1
commit cc0c4fdedd
1 changed files with 5 additions and 5 deletions

View File

@ -4214,15 +4214,14 @@ standard library.")
(define-public python-traitlets (define-public python-traitlets
(package (package
(name "python-traitlets") (name "python-traitlets")
(version "4.0.0") (version "4.1.0")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (string-append "https://pypi.python.org/packages/source/t/" (uri (pypi-uri "traitlets" version))
"traitlets/traitlets-" version ".tar.gz"))
(sha256 (sha256
(base32 (base32
"0fr3w2xwb46c591dp7zw02bgf4d21mjy9g6rhwc9bwd4ji50n50b")))) "0nxgj8jxlm1kqf8cx2x7vjid05zdgbxpqhjbdl46r8njlpgkh3j4"))))
(build-system python-build-system) (build-system python-build-system)
(arguments (arguments
`(#:phases `(#:phases
@ -4232,7 +4231,8 @@ standard library.")
`(("python-ipython-genutils" ,python-ipython-genutils) `(("python-ipython-genutils" ,python-ipython-genutils)
("python-decorator" ,python-decorator))) ("python-decorator" ,python-decorator)))
(native-inputs (native-inputs
`(("python-nose" ,python-nose))) `(("python-mock" ,python-mock)
("python-nose" ,python-nose)))
(home-page "http://ipython.org") (home-page "http://ipython.org")
(synopsis "Configuration system for Python applications") (synopsis "Configuration system for Python applications")
(description (description