baserow: 1.10.2 -> 1.12.1
This commit is contained in:
parent
a169e6f7b2
commit
be062905d3
1 changed files with 11 additions and 7 deletions
|
@ -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 ];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue