summaryrefslogtreecommitdiff
path: root/gnu/packages/python-check.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-06-10 20:14:27 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-08-08 23:02:10 +0100
commit1021b7cee6f7b2532932e47e928f9fd4b3ba0106 (patch)
treedfb447fc0e3086af57b3826bd3961e7ef2903a35 /gnu/packages/python-check.scm
parent6ff77d2cdaeacea3f9c0352ca581e20a0bee58fb (diff)
gnu: python-inline-snapshot: Update to 0.34.1.
* gnu/packages/python-check.scm (python-inline-snapshot): Update to 0.34.1. [propagated-inputs]: Add python-typing-extensions. [native-inputs]: Remove python-pytest-subtests. Change-Id: I72b38f9958519e92292a8fba8160f81d41c806cb
Diffstat (limited to 'gnu/packages/python-check.scm')
-rw-r--r--gnu/packages/python-check.scm10
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index 802781564b7..90e960b2b0f 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -1566,7 +1566,7 @@ to establish class invariants.")
1566(define-public python-inline-snapshot 1566(define-public python-inline-snapshot
1567 (package 1567 (package
1568 (name "python-inline-snapshot") 1568 (name "python-inline-snapshot")
1569 (version "0.32.6") 1569 (version "0.34.1")
1570 (source 1570 (source
1571 (origin 1571 (origin
1572 (method git-fetch) 1572 (method git-fetch)
@@ -1575,11 +1575,11 @@ to establish class invariants.")
1575 (commit (string-append "v" version)))) 1575 (commit (string-append "v" version))))
1576 (file-name (git-file-name name version)) 1576 (file-name (git-file-name name version))
1577 (sha256 1577 (sha256
1578 (base32 "1xcn26z1c7awkfpbjnr579vk7nchvl7vn3c2i88ihyabjblmy0d5")))) 1578 (base32 "0r4hy9d7iqgmbnqrqm42dgkicg4mamxd632vf3ipcmxsszlz6yvh"))))
1579 (build-system pyproject-build-system) 1579 (build-system pyproject-build-system)
1580 (arguments 1580 (arguments
1581 (list 1581 (list
1582 ;; tests: 1329 passed, 7 skipped, 1 xfailed 1582 ;; tests: 1298 passed, 7 skipped
1583 #:test-flags 1583 #:test-flags
1584 #~(list "--numprocesses" (number->string (min 8 (parallel-job-count))) 1584 #~(list "--numprocesses" (number->string (min 8 (parallel-job-count)))
1585 ;; To prevent adding mypy and pyright. 1585 ;; To prevent adding mypy and pyright.
@@ -1596,12 +1596,12 @@ to establish class invariants.")
1596 python-pytest-bootstrap 1596 python-pytest-bootstrap
1597 python-pytest-freezer 1597 python-pytest-freezer
1598 python-pytest-mock 1598 python-pytest-mock
1599 python-pytest-subtests
1600 python-pytest-xdist)) 1599 python-pytest-xdist))
1601 (propagated-inputs 1600 (propagated-inputs
1602 (list python-asttokens 1601 (list python-asttokens
1603 python-executing 1602 python-executing
1604 python-rich)) 1603 python-rich
1604 python-typing-extensions))
1605 (home-page "https://github.com/15r10nk/inline-snapshot/") 1605 (home-page "https://github.com/15r10nk/inline-snapshot/")
1606 (synopsis "Golden master/snapshot/approval testing library") 1606 (synopsis "Golden master/snapshot/approval testing library")
1607 (description 1607 (description