baserow: 1.10.2 -> 1.12.1

This commit is contained in:
Fabian Affolter 2022-10-21 11:14:35 +02:00
parent a169e6f7b2
commit be062905d3

View file

@ -8,14 +8,14 @@ let
baserow_premium = with python3.pkgs; ( buildPythonPackage rec { baserow_premium = with python3.pkgs; ( buildPythonPackage rec {
pname = "baserow_premium"; pname = "baserow_premium";
version = "1.10.2"; version = "1.12.1";
foramt = "setuptools"; foramt = "setuptools";
src = fetchFromGitLab { src = fetchFromGitLab {
owner = "bramw"; owner = "bramw";
repo = pname; repo = pname;
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-4BrhTwAxHboXz8sMZL0V68skgNw2D2/YJuiWVNe0p4w="; hash = "sha256-zT2afl3QNE2dO3JXjsZXqSmm1lv3EorG3mYZLQQMQ2Q=";
}; };
sourceRoot = "source/premium/backend"; sourceRoot = "source/premium/backend";
@ -27,14 +27,14 @@ in
with python3.pkgs; buildPythonPackage rec { with python3.pkgs; buildPythonPackage rec {
pname = "baserow"; pname = "baserow";
version = "1.10.2"; version = "1.12.1";
format = "setuptools"; format = "setuptools";
src = fetchFromGitLab { src = fetchFromGitLab {
owner = "bramw"; owner = "bramw";
repo = pname; repo = pname;
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-4BrhTwAxHboXz8sMZL0V68skgNw2D2/YJuiWVNe0p4w="; hash = "sha256-zT2afl3QNE2dO3JXjsZXqSmm1lv3EorG3mYZLQQMQ2Q=";
}; };
sourceRoot = "source/backend"; sourceRoot = "source/backend";
@ -46,9 +46,12 @@ with python3.pkgs; buildPythonPackage rec {
sed 's/\[standard\]//' -i requirements/base.in requirements/base.txt sed 's/\[standard\]//' -i requirements/base.in requirements/base.txt
''; '';
nativeBuildInputs = [ makeWrapper ]; nativeBuildInputs = [
makeWrapper
];
propagatedBuildInputs = [ propagatedBuildInputs = [
autobahn
advocate advocate
antlr4-python3-runtime antlr4-python3-runtime
boto3 boto3
@ -56,6 +59,7 @@ with python3.pkgs; buildPythonPackage rec {
celery-redbeat celery-redbeat
channels channels
channels-redis channels-redis
daphne
dj-database-url dj-database-url
django-celery-beat django-celery-beat
django-celery-email 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/ cp -r src/baserow/core/management/backup $out/lib/${python.libPrefix}/site-packages/baserow/core/management/
''; '';
# Disable linting checks
disabledTests = [ disabledTests = [
# Disable linting checks
"flake8_plugins" "flake8_plugins"
]; ];
@ -130,8 +134,8 @@ with python3.pkgs; buildPythonPackage rec {
DJANGO_SETTINGS_MODULE = "baserow.config.settings.test"; DJANGO_SETTINGS_MODULE = "baserow.config.settings.test";
meta = with lib; { meta = with lib; {
homepage = "https://baserow.io";
description = "No-code database and Airtable alternative"; description = "No-code database and Airtable alternative";
homepage = "https://baserow.io";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ onny ]; maintainers = with maintainers; [ onny ];
}; };