gnu: python-peewee: Update to 3.13.3.
* gnu/packages/databases.scm (python-peewee): Update to 3.13.3. [inputs]: Add sqlite. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>master
parent
1b5c7052c9
commit
831f1ff92e
|
@ -2436,17 +2436,19 @@ on another machine, accessed via TCP/IP.")
|
||||||
(define-public python-peewee
|
(define-public python-peewee
|
||||||
(package
|
(package
|
||||||
(name "python-peewee")
|
(name "python-peewee")
|
||||||
(version "3.9.6")
|
(version "3.13.3")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "peewee" version))
|
(uri (pypi-uri "peewee" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1j4sh946k0736m7pd54z0y6i2hjhgg3kdllx1pwq8xkzzcgrx1xw"))))
|
"0sc376v6rxga4b7ic9kxw2pmf28rmcx016320pa2nlb5d1rsjs8j"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f)) ; Fails to import test data
|
`(#:tests? #f)) ; Fails to import test data
|
||||||
|
(inputs
|
||||||
|
`(("sqlite" ,sqlite)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python-cython" ,python-cython)))
|
`(("python-cython" ,python-cython)))
|
||||||
(home-page "https://github.com/coleifer/peewee/")
|
(home-page "https://github.com/coleifer/peewee/")
|
||||||
|
|
Reference in New Issue