package new dependencies for python3 Seafile 7.1.1
This commit is contained in:
parent
2fbfda643b
commit
6b5ed21c12
5 changed files with 101 additions and 8 deletions
19
default.nix
19
default.nix
|
@ -1,13 +1,16 @@
|
|||
self: super: rec {
|
||||
libevhtp = super.callPackage ./libevhtp/default.nix {};
|
||||
libsearpc = super.callPackage ./libsearpc/default.nix {};
|
||||
seafile-server = super.callPackage ./seafile-server/default.nix { inherit libevhtp python27Packages libsearpc;};
|
||||
python27Packages = super.python27Packages // rec {
|
||||
django-jsonfield = super.python27Packages.callPackage ./django-jsonfield/default.nix {};
|
||||
jsonfield = super.python27Packages.callPackage ./jsonfield/default.nix {};
|
||||
django-post_office = super.python27Packages.callPackage ./django-post_office/default.nix { inherit jsonfield; };
|
||||
django-statici18n = super.python27Packages.callPackage ./django-statici18n/default.nix {};
|
||||
seafile-bindings = super.python27Packages.toPythonModule seafile-server.seafile-server-core;
|
||||
ccnet-bindings = super.python27Packages.toPythonModule seafile-server.ccnet-server;
|
||||
seafile-server = super.callPackage ./seafile-server/default.nix { inherit libevhtp python3Packages libsearpc;};
|
||||
python3Packages = super.python3Packages // rec {
|
||||
jsonfield = super.python3Packages.callPackage ./jsonfield {};
|
||||
django-simple-captcha = super.python3Packages.callPackage ./django-simple-captcha { inherit django-ranged-response; };
|
||||
django-ranged-response = super.python3Packages.callPackage ./django-ranged-response {};
|
||||
django-post_office = super.python3Packages.callPackage ./django-post_office { inherit jsonfield; };
|
||||
django-statici18n = super.python3Packages.callPackage ./django-statici18n {};
|
||||
captcha = super.python3Packages.callPackage ./captcha {};
|
||||
django-formtools = super.python3Packages.callPackage ./django-formtools {};
|
||||
seafile-bindings = super.python3Packages.toPythonModule seafile-server.seafile-server-core;
|
||||
ccnet-bindings = super.python3Packages.toPythonModule seafile-server.ccnet-server;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue