gnu: python-enum34: Update to 1.1.6.

* gnu/packages/python.scm (python-enum34, python2-enum34): Update to 1.1.6.
[arguments]: Remove custom test phase.
This commit is contained in:
Leo Famulari 2017-03-29 14:41:26 -04:00
parent 9342c5a0bc
commit 5e92341471
No known key found for this signature in database
GPG Key ID: 2646FA30BACA7F08
1 changed files with 2 additions and 8 deletions

View File

@ -1461,21 +1461,15 @@ bug tracker.")
(define-public python-enum34
(package
(name "python-enum34")
(version "1.1.0")
(version "1.1.6")
(source
(origin
(method url-fetch)
(uri (pypi-uri "enum34" version))
(sha256
(base32
"0yx1m4564wxgbm4glb3457hi16xihd9w63rv13y2przkdir9dfgp"))))
"1cgm5ng2gcfrkrm3hc22brl6chdmv67b9zvva9sfs7gn7dwc9n4a"))))
(build-system python-build-system)
(arguments
`(#:phases
(alist-replace
'check
(lambda _ (zero? (system* "python" "enum/test_enum.py")))
%standard-phases)))
(home-page "https://pypi.python.org/pypi/enum34")
(synopsis "Backported Python 3.4 Enum")
(description