summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-10-21 11:14:35 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2022-10-27 21:43:00 +0200
commitbe062905d38f0145ead874e4514db5829f7eb88b (patch)
tree0bea1f5c8ff7d6d9db9d8b0ea73d4f5fa16db8cd
parenta169e6f7b268e87d817400f7cf52243e525a5b47 (diff)
downloadnixpkgs-be062905d38f0145ead874e4514db5829f7eb88b.tar
nixpkgs-be062905d38f0145ead874e4514db5829f7eb88b.tar.gz
nixpkgs-be062905d38f0145ead874e4514db5829f7eb88b.tar.bz2
nixpkgs-be062905d38f0145ead874e4514db5829f7eb88b.tar.lz
nixpkgs-be062905d38f0145ead874e4514db5829f7eb88b.tar.xz
nixpkgs-be062905d38f0145ead874e4514db5829f7eb88b.tar.zst
nixpkgs-be062905d38f0145ead874e4514db5829f7eb88b.zip
baserow: 1.10.2 -> 1.12.1
-rw-r--r--pkgs/servers/baserow/default.nix18
1 files changed, 11 insertions, 7 deletions
diff --git a/pkgs/servers/baserow/default.nix b/pkgs/servers/baserow/default.nix
index cdb1329ce2e..222d24252eb 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 ];
   };