summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorAndreas Enge <andreas@enge.fr>2026-04-15 11:07:18 +0200
committerAndreas Enge <andreas@enge.fr>2026-04-15 11:07:31 +0200
commitaafdf7ecf79657c21c9d85cd11fc2659648b617d (patch)
tree04277522824c7ace1226882c33cbe95514282565 /gnu/packages
parent0999b3268ce66586b98f99e392d0da4c21816525 (diff)
gnu: Remove python-pydantic-1.
* gnu/packages/python-xyz.scm (python-pydantic-1): Delete variable. Fixes: guix/guix#7186 Change-Id: I75088c0eaa764fc6dd499801da64124eb7fbecf4
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/python-xyz.scm27
1 files changed, 0 insertions, 27 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 0f09aae4651..cf7d97403cc 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -10497,33 +10497,6 @@ which can produce feeds in RSS 2.0, RSS 0.91, and Atom formats.")
10497errors when data is invalid.") 10497errors when data is invalid.")
10498 (license license:expat))) 10498 (license license:expat)))
10499 10499
10500(define-public python-pydantic-1
10501 (package
10502 (inherit python-pydantic)
10503 (name "python-pydantic")
10504 (version "1.10.19")
10505 (source
10506 (origin
10507 (method git-fetch)
10508 (uri (git-reference
10509 (url "https://github.com/samuelcolvin/pydantic")
10510 (commit (string-append "v" version))))
10511 (file-name (git-file-name name version))
10512 (sha256
10513 (base32 "0swcpfq1y0h5dcj82idls8k5la4xh4c0vz47y7jci2qass8gjffc"))))
10514 (build-system pyproject-build-system)
10515 (arguments
10516 (list
10517 #:test-flags
10518 ;; One test fails with not equal assertion.
10519 #~(list "--deselect=tests/test_validators.py::test_assert_raises_validation_error")))
10520 (native-inputs
10521 (list python-pytest
10522 python-pytest-mock
10523 python-setuptools))
10524 (propagated-inputs
10525 (list python-typing-extensions))))
10526
10527;; It may be removed after 2026-01-05. 10500;; It may be removed after 2026-01-05.
10528(define-deprecated/public-alias python-pydantic-2 python-pydantic) 10501(define-deprecated/public-alias python-pydantic-2 python-pydantic)
10529 10502