From be062905d38f0145ead874e4514db5829f7eb88b Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 21 Oct 2022 11:14:35 +0200 Subject: [PATCH] baserow: 1.10.2 -> 1.12.1 --- pkgs/servers/baserow/default.nix | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/pkgs/servers/baserow/default.nix b/pkgs/servers/baserow/default.nix index cdb1329ce2e4..222d24252ebf 100644 --- a/pkgs/servers/baserow/default.nix +++ b/pkgs/servers/baserow/default.nix @@ -8,14 +8,14 @@ let baserow_premium = with python3.pkgs; ( buildPythonPackage rec { pname = "baserow_premium"; - version = "1.10.2"; + version = "1.12.1"; foramt = "setuptools"; src = fetchFromGitLab { owner = "bramw"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-4BrhTwAxHboXz8sMZL0V68skgNw2D2/YJuiWVNe0p4w="; + hash = "sha256-zT2afl3QNE2dO3JXjsZXqSmm1lv3EorG3mYZLQQMQ2Q="; }; sourceRoot = "source/premium/backend"; @@ -27,14 +27,14 @@ in with python3.pkgs; buildPythonPackage rec { pname = "baserow"; - version = "1.10.2"; + version = "1.12.1"; format = "setuptools"; src = fetchFromGitLab { owner = "bramw"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-4BrhTwAxHboXz8sMZL0V68skgNw2D2/YJuiWVNe0p4w="; + hash = "sha256-zT2afl3QNE2dO3JXjsZXqSmm1lv3EorG3mYZLQQMQ2Q="; }; sourceRoot = "source/backend"; @@ -46,9 +46,12 @@ with python3.pkgs; buildPythonPackage rec { sed 's/\[standard\]//' -i requirements/base.in requirements/base.txt ''; - nativeBuildInputs = [ makeWrapper ]; + nativeBuildInputs = [ + makeWrapper + ]; propagatedBuildInputs = [ + autobahn advocate antlr4-python3-runtime boto3 @@ -56,6 +59,7 @@ with python3.pkgs; buildPythonPackage rec { celery-redbeat channels channels-redis + daphne dj-database-url django-celery-beat django-celery-email @@ -111,8 +115,8 @@ with python3.pkgs; buildPythonPackage rec { cp -r src/baserow/core/management/backup $out/lib/${python.libPrefix}/site-packages/baserow/core/management/ ''; - # Disable linting checks disabledTests = [ + # Disable linting checks "flake8_plugins" ]; @@ -130,8 +134,8 @@ with python3.pkgs; buildPythonPackage rec { DJANGO_SETTINGS_MODULE = "baserow.config.settings.test"; meta = with lib; { - homepage = "https://baserow.io"; description = "No-code database and Airtable alternative"; + homepage = "https://baserow.io"; license = licenses.mit; maintainers = with maintainers; [ onny ]; };