summaryrefslogtreecommitdiff
path: root/gnu/packages/python-check.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2024-11-22 12:54:37 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2024-12-13 20:23:28 +0000
commitc5a45b3a8fe3887c853dc30af0ead6c47cc139de (patch)
tree478ac1e077037c5301f136da42f984f236144f2d /gnu/packages/python-check.scm
parent52ad47b9cb0c108f83ab0dd6416897a32ab8f88b (diff)
gnu: python-pytest-flask: Update to 1.3.0.
* gnu/packages/python-check.scm (python-pytest-flask): Update to 1.3.0. [build-system]: Swap to pyproject-build-system. [propagated-inputs]: Add python-flask. [native-inputs]: Remove python-flask and python-werkzeug; add python-setuptools and python-wheel. Change-Id: I73beecdcb9b954cc406fbfb7cac3cb4614c299ae
Diffstat (limited to 'gnu/packages/python-check.scm')
-rw-r--r--gnu/packages/python-check.scm15
1 files changed, 9 insertions, 6 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index e4e5c583b6a..a29352b531f 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -1815,18 +1815,21 @@ also ensuring that the notebooks are running without errors.")
1815(define-public python-pytest-flask 1815(define-public python-pytest-flask
1816 (package 1816 (package
1817 (name "python-pytest-flask") 1817 (name "python-pytest-flask")
1818 (version "1.0.0") 1818 (version "1.3.0")
1819 (source 1819 (source
1820 (origin 1820 (origin
1821 (method url-fetch) 1821 (method url-fetch)
1822 (uri (pypi-uri "pytest-flask" version)) 1822 (uri (pypi-uri "pytest-flask" version))
1823 (sha256 1823 (sha256
1824 (base32 1824 (base32 "0pm93xli1pvq9w053grndi84hxq087mr2xhagvac98qvnabirgjq"))))
1825 "1hln7mwgdzfi5ma0kqfsi768l7p24jhkw8l0imhifwy08nh7hmjd")))) 1825 (build-system pyproject-build-system)
1826 (build-system python-build-system)
1827 (native-inputs 1826 (native-inputs
1828 (list python-flask python-pytest python-setuptools-scm 1827 (list python-pytest
1829 python-werkzeug)) 1828 python-setuptools
1829 python-setuptools-scm
1830 python-wheel))
1831 (propagated-inputs
1832 (list python-flask))
1830 (home-page "https://github.com/pytest-dev/pytest-flask") 1833 (home-page "https://github.com/pytest-dev/pytest-flask")
1831 (synopsis "Pytest fixtures to test Flask applications") 1834 (synopsis "Pytest fixtures to test Flask applications")
1832 (description 1835 (description