forked from mirrors/nixpkgs
python3Packages.seaserv: use correct Python version
This commit is contained in:
parent
14ded1fd6f
commit
23b5627b7a
|
@ -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
|
||||
|
|
|
@ -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 { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue