[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
16/16: gnu: python-pathpy: Update to 11.5.0.
From: |
guix-commits |
Subject: |
16/16: gnu: python-pathpy: Update to 11.5.0. |
Date: |
Wed, 26 Jun 2019 10:33:56 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit 49ad11e95853b31147c3ec49082f94ba8e2b8571
Author: Ricardo Wurmus <address@hidden>
Date: Tue Jun 25 12:03:58 2019 +0200
gnu: python-pathpy: Update to 11.5.0.
* gnu/packages/python-xyz.scm (python-pathpy): Update to 11.5.0.
[outputs]: Add separate "doc" output.
[native-inputs]: Add python-jaraco-packaging.
[arguments]: Enable tests; uncomment "build-doc" and "install-doc" phases;
replace "check" phase to skip flaky test.
---
gnu/packages/python-xyz.scm | 49 +++++++++++++++++++++++++--------------------
1 file changed, 27 insertions(+), 22 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e2a3d71..181899d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -4915,14 +4915,14 @@ releases.")
(define-public python-pathpy
(package
(name "python-pathpy")
- (version "11.0.1")
+ (version "11.5.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "path.py" version))
(sha256
- (base32 "07x15v8c7ry9bvycw294c9yq6ky9v2b0dalvgi6rn38ilh69vsz7"))))
- ;; (outputs '("out" "doc"))
+ (base32 "1jxkf91syzxlpiwgm83fjfz1m5xh3jrvv4iyl5wjsnkk599pls5n"))))
+ (outputs '("out" "doc"))
(build-system python-build-system)
(propagated-inputs
`(("python-appdirs" ,python-appdirs)))
@@ -4931,26 +4931,31 @@ releases.")
("python-sphinx" ,python-sphinx)
("python-rst.linker" ,python-rst.linker)
("python-pytest" ,python-pytest)
- ("python-pytest-runner" ,python-pytest-runner)))
+ ("python-pytest-runner" ,python-pytest-runner)
+ ("python-jaraco-packaging" ,python-jaraco-packaging)))
(arguments
- ;; FIXME: Documentation and tests require "jaraco.packaging".
- `(#:tests? #f))
- ;; #:phases
- ;; (modify-phases %standard-phases
- ;; (add-after 'build 'build-doc
- ;; (lambda _
- ;; (setenv "LANG" "en_US.UTF-8")
- ;; (zero? (system* "python" "setup.py" "build_sphinx"))))
- ;; (add-after 'install 'install-doc
- ;; (lambda* (#:key outputs #:allow-other-keys)
- ;; (let* ((data (string-append (assoc-ref outputs "doc")
"/share"))
- ;; (doc (string-append data "/doc/" ,name "-" ,version))
- ;; (html (string-append doc "/html")))
- ;; (mkdir-p html)
- ;; (for-each (lambda (file)
- ;; (copy-file file (string-append doc "/" file)))
- ;; '("README.rst" "CHANGES.rst"))
- ;; (copy-recursively "build/sphinx/html" html)))))))
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'build 'build-doc
+ (lambda _
+ (setenv "LANG" "en_US.UTF-8")
+ (invoke "python" "setup.py" "build_sphinx")))
+ (add-after 'install 'install-doc
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let* ((data (string-append (assoc-ref outputs "doc") "/share"))
+ (doc (string-append data "/doc/" ,name "-" ,version))
+ (html (string-append doc "/html")))
+ (mkdir-p html)
+ (for-each (lambda (file)
+ (copy-file file (string-append doc "/" file)))
+ '("README.rst" "CHANGES.rst"))
+ (copy-recursively "build/sphinx/html" html)
+ #t)))
+ (replace 'check
+ (lambda _
+ ;; The import time test aborts if an import takes longer than
+ ;; 100ms. It may very well take a little longer than that.
+ (invoke "pytest" "-v" "-k" "not test_import_time"))))))
(home-page "https://github.com/jaraco/path.py")
(synopsis "Python module wrapper for built-in os.path")
(description
- 10/16: gnu: Add python-pytest-checkdocs., (continued)
- 10/16: gnu: Add python-pytest-checkdocs., guix-commits, 2019/06/26
- 12/16: gnu: Add python-pytest-shutil., guix-commits, 2019/06/26
- 11/16: gnu: Add python-pytest-flake8., guix-commits, 2019/06/26
- 06/16: gnu: Add python-contextlib2., guix-commits, 2019/06/26
- 08/16: gnu: Add python-zipp., guix-commits, 2019/06/26
- 07/16: gnu: Add python-setuptools-git., guix-commits, 2019/06/26
- 09/16: gnu: Add python-importlib-metadata., guix-commits, 2019/06/26
- 14/16: gnu: Add python-pytest-virtualenv., guix-commits, 2019/06/26
- 02/16: gnu: Add libclc., guix-commits, 2019/06/26
- 13/16: gnu: Add python-pytest-fixture-config., guix-commits, 2019/06/26
- 16/16: gnu: python-pathpy: Update to 11.5.0.,
guix-commits <=
- 15/16: gnu: Add python-jaraco-packaging., guix-commits, 2019/06/26
- 01/16: gnu: libcxx: Update hash., guix-commits, 2019/06/26
- 05/16: gnu: Add python-pathlib2., guix-commits, 2019/06/26