3
0
Fork 0
forked from mirrors/nixpkgs

python3Packages.seaserv: use correct Python version

This commit is contained in:
Robert Schütz 2021-12-31 10:48:48 +00:00
parent 14ded1fd6f
commit 23b5627b7a
2 changed files with 5 additions and 3 deletions

View file

@ -1,4 +1,4 @@
{ stdenv, lib, fetchFromGitHub, pkg-config, python3Packages, autoreconfHook
{ stdenv, lib, fetchFromGitHub, pkg-config, python3, autoreconfHook
, libuuid, sqlite, glib, libevent, libsearpc, openssl, fuse, libarchive, which
, vala, cmake, oniguruma }:
@ -28,7 +28,7 @@ in stdenv.mkDerivation rec {
glib
libsearpc
libevent
python3Packages.python
python3
fuse
libarchive
which

View file

@ -8738,7 +8738,9 @@ in {
seahub = callPackage ../development/python-modules/seahub { };
seaserv = toPythonModule pkgs.seafile-server;
seaserv = toPythonModule (pkgs.seafile-server.override {
python3 = self.python;
});
seatconnect = callPackage ../development/python-modules/seatconnect { };