summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2021-01-23 08:34:59 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2021-01-23 08:35:54 +0100
commit4affc40a50dbabf2216176307a507b9225e01be7 (patch)
tree8575953cc6f9e1da9e0f508353048b2e323c1d5e /pkgs/development/libraries
parent103dfe655e3fa12492a720593dc00363ab4b70ae (diff)
downloadnixpkgs-4affc40a50dbabf2216176307a507b9225e01be7.tar
nixpkgs-4affc40a50dbabf2216176307a507b9225e01be7.tar.gz
nixpkgs-4affc40a50dbabf2216176307a507b9225e01be7.tar.bz2
nixpkgs-4affc40a50dbabf2216176307a507b9225e01be7.tar.lz
nixpkgs-4affc40a50dbabf2216176307a507b9225e01be7.tar.xz
nixpkgs-4affc40a50dbabf2216176307a507b9225e01be7.tar.zst
nixpkgs-4affc40a50dbabf2216176307a507b9225e01be7.zip
sqlite: test sqlalchemy when updating
This is an important Python package that should keep functioning on an
upgrade.
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/sqlite/default.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/pkgs/development/libraries/sqlite/default.nix b/pkgs/development/libraries/sqlite/default.nix
index fe10e0fc7ae..2b7a472d1e7 100644
--- a/pkgs/development/libraries/sqlite/default.nix
+++ b/pkgs/development/libraries/sqlite/default.nix
@@ -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";