diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-08-04 14:02:48 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-08-04 14:02:48 +0200 |
commit | 6bf53ad58d33d50461a370327bcbf424fc29ec77 (patch) | |
tree | 64e1ce7ddfab136a65f200786c2f07056c6b496d | |
parent | 4668464f29997367eef782ed3523ea955e9ead48 (diff) | |
download | guix-6bf53ad58d33d50461a370327bcbf424fc29ec77.tar guix-6bf53ad58d33d50461a370327bcbf424fc29ec77.tar.gz |
gnu: python-mako: Update to 1.1.0.
* gnu/packages/python-xyz.scm (python-mako): Update to 1.1.0.
[arguments]: New field.
[native-inputs]: Remove PYTHON-NOSE.
-rw-r--r-- | gnu/packages/python-xyz.scm | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 7a47e6a0e4..dcf5943231 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -8790,20 +8790,24 @@ python-xdo for newer bindings.)") (define-public python-mako (package (name "python-mako") - (version "1.0.14") + (version "1.1.0") (source (origin (method url-fetch) (uri (pypi-uri "Mako" version)) (sha256 (base32 - "0jvznnyidyva7n7jw7pm42qpwxlhz5pjk2x6camnk4k9qpc459pm")))) + "0jqa3qfpykyn4fmkn0kh6043sfls7br8i2bsdbccazcvk9cijsd3")))) (build-system python-build-system) + (arguments + `(#:phases (modify-phases %standard-phases + (replace 'check + (lambda _ + (invoke "pytest" "-vv")))))) (propagated-inputs `(("python-markupsafe" ,python-markupsafe))) (native-inputs `(("python-mock" ,python-mock) - ("python-nose" ,python-nose) ("python-pytest" ,python-pytest))) (home-page "https://www.makotemplates.org/") (synopsis "Templating language for Python") |