Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

baserow: 1.12.1 -> 1.13.3 #210359

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 30 additions & 5 deletions pkgs/servers/baserow/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,34 +15,52 @@ let

baserow_premium = self.buildPythonPackage rec {
pname = "baserow_premium";
version = "1.12.1";
version = "1.13.3";
foramt = "setuptools";

src = fetchFromGitLab {
owner = "bramw";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-zT2afl3QNE2dO3JXjsZXqSmm1lv3EorG3mYZLQQMQ2Q=";
hash = "sha256-CWQ4z6x+MG9DdKWLdaHoKmDzQxNEN86PR2CW8jEs0QE=";
};

sourceRoot = "source/premium/backend";

doCheck = false;
};

baserow_enterprise = self.buildPythonPackage rec {
pname = "baserow_enterprise";
version = "1.13.3";
foramt = "setuptools";

src = fetchFromGitLab {
owner = "bramw";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-CWQ4z6x+MG9DdKWLdaHoKmDzQxNEN86PR2CW8jEs0QE=";
};

sourceRoot = "source/enterprise/backend";

doCheck = false;
};

};
};
in

with python.pkgs; buildPythonApplication rec {
pname = "baserow";
version = "1.12.1";
version = "1.13.3";
format = "setuptools";

src = fetchFromGitLab {
owner = "bramw";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-zT2afl3QNE2dO3JXjsZXqSmm1lv3EorG3mYZLQQMQ2Q=";
hash = "sha256-CWQ4z6x+MG9DdKWLdaHoKmDzQxNEN86PR2CW8jEs0QE=";
};

sourceRoot = "source/backend";
Expand All @@ -69,6 +87,7 @@ with python.pkgs; buildPythonApplication rec {
channels-redis
daphne
dj-database-url
djangorestframework-simplejwt
django-celery-beat
django-celery-email
django-cors-headers
Expand All @@ -77,23 +96,28 @@ with python.pkgs; buildPythonApplication rec {
django-storages
drf-jwt
drf-spectacular
elementpath
faker
gunicorn
importlib-resources
itsdangerous
pillow
psutil
psycopg2
pysaml2
redis
regex
requests
requests-oauthlib
service-identity
setuptools
tqdm
twisted
unicodecsv
uvicorn
validators
watchgod
xmlschema
zipp
] ++ uvicorn.optional-dependencies.standard;

Expand All @@ -104,6 +128,7 @@ with python.pkgs; buildPythonApplication rec {
'';

checkInputs = [
baserow_enterprise
baserow_premium
boto3
freezegun
Expand Down Expand Up @@ -131,7 +156,7 @@ with python.pkgs; buildPythonApplication rec {
disabledTestPaths = [
# Disable premium tests
"../premium/backend/src/baserow_premium"
"../premium/backend/tests/baserow_premium"
"../enterprise/backend/src/baserow_enterprise"
# Disable database related tests
"tests/baserow/contrib/database"
"tests/baserow/api"
Expand Down