From 8ba8ce5edc05202eaaf69dacac71866a458963f0 Mon Sep 17 00:00:00 2001 From: Vinicius Monego Date: Sat, 21 Jun 2025 23:54:01 -0300 Subject: [PATCH] gnu: python-fpylll: Update to 0.6.4. * gnu/packages/algebra.scm (python-fpylll): Update to 0.6.4. [native-inputs]: Add python-pytest. [propagated-inputs]: Remove python-pytest. Change-Id: I136cf7c5b493182f452a839a8fd3ec438ae005e7 --- gnu/packages/algebra.scm | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm index 38b53e94ea3..02ca38cb9ec 100644 --- a/gnu/packages/algebra.scm +++ b/gnu/packages/algebra.scm @@ -218,21 +218,20 @@ the real span of the lattice.") (define-public python-fpylll (package (name "python-fpylll") - (version "0.6.3") + (version "0.6.4") (source (origin (method url-fetch) (uri (pypi-uri "fpylll" version)) (sha256 (base32 - "12i4sj6p0z94r1p568jprcnklpi6qh926whzywv23d973jg09x53")))) + "1k9fcfcf0p0z0szd1f5973mg9ixl51vmhifc684l2sm4mpc607bi")))) (build-system pyproject-build-system) - (native-inputs (list python-setuptools python-wheel)) + (native-inputs (list python-pytest python-setuptools python-wheel)) (inputs (list fplll gmp mpfr pari-gp)) (propagated-inputs - (list python-cysignals python-cython-3 python-flake8 python-numpy - python-pytest)) + (list python-cysignals python-cython-3 python-flake8 python-numpy)) (home-page "https://github.com/fplll/fpylll") (synopsis "Python interface for fplll") (description "fpylll is a Python wrapper for fplll.")