sqlite: test sqlalchemy when updating

This is an important Python package that should keep functioning on an
upgrade.
This commit is contained in:
Frederik Rietdijk 2021-01-23 08:34:59 +01:00
parent 103dfe655e
commit 4affc40a50

View file

@ -1,4 +1,6 @@
{ lib, stdenv, fetchurl, zlib, interactive ? false, readline ? null, ncurses ? null }:
{ lib, stdenv, fetchurl, zlib, interactive ? false, readline ? null, ncurses ? null
, python3Packages
}:
assert interactive -> readline != null && ncurses != null;
@ -73,6 +75,10 @@ stdenv.mkDerivation rec {
doCheck = false; # fails to link against tcl
passthru.tests = {
inherit (python3Packages) sqlalchemy;
};
meta = {
description = "A self-contained, serverless, zero-configuration, transactional SQL database engine";
downloadPage = "https://sqlite.org/download.html";