diff options
author | Hilton Chain <hako@ultrarare.space> | 2024-02-01 11:37:13 +0800 |
---|---|---|
committer | Hilton Chain <hako@ultrarare.space> | 2024-02-01 14:21:01 +0800 |
commit | f6f52bb8f951953e762ad8503222d2fe547cc90f (patch) | |
tree | d6542960f8788818748c06d60f20a2e35a70bb76 | |
parent | 813712ccf2d7edbbd589649fba6e8ca8a13cd74c (diff) | |
download | guix-f6f52bb8f951953e762ad8503222d2fe547cc90f.tar.gz guix-f6f52bb8f951953e762ad8503222d2fe547cc90f.zip |
gnu: python-apsw: Update to 3.45.1.0.
* gnu/packages/databases.scm (python-apsw): Update to 3.45.1.0.
[native-inputs]: Remove python-cython.
Change-Id: Ia478f15f4c3daf2f5e05e1f3d94d50a7de40f13c
-rw-r--r-- | gnu/packages/databases.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index b56767d311..903088ed4b 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -3792,7 +3792,7 @@ PickleShare.") (define-public python-apsw (package (name "python-apsw") - (version "3.42.0.1") + (version "3.45.1.0") ;; The compressed release has fetching functionality disabled. (source (origin @@ -3802,11 +3802,11 @@ PickleShare.") version "/apsw-" version ".zip")) (sha256 (base32 - "0dr7zymn45x2793cilr709rnwn9g1c4n4vzln57y2lhj7420ykic")))) + "1vfrzb414pbh5k0cgcqkp039jvla2galapn4a551zgh8xi70bnrp")))) (build-system pyproject-build-system) (native-inputs - (list python-cython unzip)) - (inputs (list sqlite-next)) ;SQLite 3.42 required. + (list unzip)) + (inputs (list sqlite-next)) ;SQLite 3.45.1 required. (arguments (list #:phases |