diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-10-28 19:08:13 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-11-20 01:06:36 +0000 |
| commit | f06c3cd985038ea4a9f04e6ee592cb048f576c6d (patch) | |
| tree | ae341758dfa985405745dc6593ec34385abb6583 /gnu/packages | |
| parent | ab404913889fd4e065d693cb7759f60a15918637 (diff) | |
gnu: python-aiosqlite: Update to 0.21.0.
* gnu/packages/databases.scm (python-aiosqlite): Update to 0.21.0.
[source, synopsis]: Run guix style.
[arguments]: Drop <#:phases> in favor of <#:test-backend>.
[native-inputs]: Remove python-coverage, python-mypy.
Change-Id: I2a9a66a1a1386ff44b440c18dac8345bb136e7a2
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/databases.scm | 36 |
1 files changed, 13 insertions, 23 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index e4c5d40361b..ec20adc7d6d 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -4597,31 +4597,21 @@ into Python.") (define-public python-aiosqlite (package (name "python-aiosqlite") - (version "0.18.0") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/omnilib/aiosqlite") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "1a8sggh1wwbpl46k5qcfmp97s9hjysna0x7mwwc53kyfm0m95wf8")))) + (version "0.21.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/omnilib/aiosqlite") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1njzxi130bbix53wl0gcsvryk1b2cazq0s2701jbkf6nvr3ywpyy")))) (build-system pyproject-build-system) - (arguments - (list #:phases #~(modify-phases %standard-phases - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - (invoke "python" "-m" "coverage" "run" "-m" - "aiosqlite.tests") - (invoke "python" "-m" "coverage" "report"))))))) - (native-inputs (list python-flit-core - python-coverage - python-mypy)) + (arguments (list #:test-backend #~'unittest)) + (native-inputs (list python-flit-core)) (home-page "https://github.com/jreese/aiosqlite") - (synopsis - "Asyncio bridge for sqlite3") + (synopsis "Asyncio bridge for sqlite3") (description "The package aiosqlite replicates the standard sqlite3 module, but with async versions of all the standard connection and cursor methods, and context |
