Skip to content

Commit

Permalink
baserow
Browse files Browse the repository at this point in the history
  • Loading branch information
onny committed Jul 5, 2024
1 parent 852d695 commit f719302
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,14 +82,14 @@ in

with python.pkgs; buildPythonApplication rec {
pname = "baserow";
version = "1.23.2";
version = "1.25.2";
format = "setuptools";

src = fetchFromGitHub {
owner = "bram2w";
repo = pname;
rev = "refs/tags/${version}";
hash = "";
hash = "sha256-sitJ0S3mzYYVquNGjLnshA8z4eUjMNit/WyVUPrkfQ4=";
};

sourceRoot = "source/backend";
Expand Down Expand Up @@ -118,7 +118,7 @@ with python.pkgs; buildPythonApplication rec {
makeWrapper
];

propagatedBuildInputs = [
dependencies = [
google-api-core
google-cloud-core
google-cloud-storage
Expand Down Expand Up @@ -179,15 +179,15 @@ with python.pkgs; buildPythonApplication rec {
opentelemetry-exporter-otlp-proto-http
opentelemetry-instrumentation-asgi
opentelemetry-instrumentation-aiohttp-client
opentelemetry-instrumentation-botocore
opentelemetry-instrumentation-celery
opentelemetry-instrumentation-dbapi
#opentelemetry-instrumentation-botocore
#opentelemetry-instrumentation-celery
#opentelemetry-instrumentation-dbapi
opentelemetry-instrumentation-django
opentelemetry-instrumentation-grpc
opentelemetry-instrumentation-logging
opentelemetry-instrumentation-psycopg2
opentelemetry-instrumentation-redis
opentelemetry-instrumentation-requests
#opentelemetry-instrumentation-logging
#opentelemetry-instrumentation-psycopg2
#opentelemetry-instrumentation-redis
#opentelemetry-instrumentation-requests
opentelemetry-instrumentation-wsgi
opentelemetry-instrumentation
opentelemetry-sdk
Expand All @@ -204,7 +204,7 @@ with python.pkgs; buildPythonApplication rec {
'';
#
nativeCheckInputs = [
baserow_premium
#baserow_premium
boto3
freezegun
httpretty
Expand Down Expand Up @@ -248,7 +248,11 @@ with python.pkgs; buildPythonApplication rec {
doCheck = false; # our disabled tests paths are not ignored for premium/backend because of an explicit testpaths I suppose.
# todo patch it.

pythonImportsCheck = [ "baserow" "baserow_premium.config.settings" "baserow_enterprise.config.settings" ];
pythonImportsCheck = [
"baserow"
"baserow_premium.config.settings"
"baserow_enterprise.config.settings"
];

DJANGO_SETTINGS_MODULE = "baserow.config.settings.test";

Expand All @@ -258,7 +262,7 @@ with python.pkgs; buildPythonApplication rec {
enterprise = baserow_enterprise;
# PYTHONPATH of all dependencies used by the package
inherit python;
pythonPath = python.pkgs.makePythonPath propagatedBuildInputs;
pythonPath = python.pkgs.makePythonPath dependencies;

tests = {
inherit (nixosTests) baserow;
Expand Down
2 changes: 0 additions & 2 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25330,8 +25330,6 @@ with pkgs;

asterisk-ldap = lowPrio (asterisk.override { ldapSupport = true; });

baserow = callPackage ../servers/baserow { };

bftpd = callPackage ../servers/ftp/bftpd { };

bind = callPackage ../servers/dns/bind { };
Expand Down

0 comments on commit f719302

Please sign in to comment.