Skip to content

Commit

Permalink
etebase-server: 0.11.0 -> 0.13.1
Browse files Browse the repository at this point in the history
Removes the dependency on Django 3, fixing #262907.
  • Loading branch information
pyrox0 committed Jun 4, 2024
1 parent fe057cf commit 3d3f029
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkgs/servers/etebase/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ let
in
python.pkgs.buildPythonPackage rec {
pname = "etebase-server";
version = "0.11.0";
version = "0.13.1";

src = fetchFromGitHub {
owner = "etesync";
repo = "server";
rev = "refs/tags/${version}";
hash = "sha256-+MSNX+CFmIQII+SFjM2TQKCgRMOTdsOIVAP8ur4WjQY=";
rev = "refs/tags/v${version}";
hash = "sha256-GEieXue3Kvc4zZjfypKLmTmhNPbn/GR8g0qEqkl+wkw=";
};

patches = [ ./secret.patch ];
Expand All @@ -31,7 +31,7 @@ python.pkgs.buildPythonPackage rec {

propagatedBuildInputs = with python.pkgs; [
aiofiles
django_3
django_4
fastapi
msgpack
pynacl
Expand Down

0 comments on commit 3d3f029

Please sign in to comment.