tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
baserow: 1.10.2 -> 1.12.1
Fabian Affolter
3 years ago
be062905
a169e6f7
+11
-7
1 changed file
expand all
collapse all
unified
split
pkgs
servers
baserow
default.nix
+11
-7
pkgs/servers/baserow/default.nix
reviewed
···
8
8
9
9
baserow_premium = with python3.pkgs; ( buildPythonPackage rec {
10
10
pname = "baserow_premium";
11
11
-
version = "1.10.2";
11
11
+
version = "1.12.1";
12
12
foramt = "setuptools";
13
13
14
14
src = fetchFromGitLab {
15
15
owner = "bramw";
16
16
repo = pname;
17
17
rev = "refs/tags/${version}";
18
18
-
hash = "sha256-4BrhTwAxHboXz8sMZL0V68skgNw2D2/YJuiWVNe0p4w=";
18
18
+
hash = "sha256-zT2afl3QNE2dO3JXjsZXqSmm1lv3EorG3mYZLQQMQ2Q=";
19
19
};
20
20
21
21
sourceRoot = "source/premium/backend";
···
27
27
28
28
with python3.pkgs; buildPythonPackage rec {
29
29
pname = "baserow";
30
30
-
version = "1.10.2";
30
30
+
version = "1.12.1";
31
31
format = "setuptools";
32
32
33
33
src = fetchFromGitLab {
34
34
owner = "bramw";
35
35
repo = pname;
36
36
rev = "refs/tags/${version}";
37
37
-
hash = "sha256-4BrhTwAxHboXz8sMZL0V68skgNw2D2/YJuiWVNe0p4w=";
37
37
+
hash = "sha256-zT2afl3QNE2dO3JXjsZXqSmm1lv3EorG3mYZLQQMQ2Q=";
38
38
};
39
39
40
40
sourceRoot = "source/backend";
···
46
46
sed 's/\[standard\]//' -i requirements/base.in requirements/base.txt
47
47
'';
48
48
49
49
-
nativeBuildInputs = [ makeWrapper ];
49
49
+
nativeBuildInputs = [
50
50
+
makeWrapper
51
51
+
];
50
52
51
53
propagatedBuildInputs = [
54
54
+
autobahn
52
55
advocate
53
56
antlr4-python3-runtime
54
57
boto3
···
56
59
celery-redbeat
57
60
channels
58
61
channels-redis
62
62
+
daphne
59
63
dj-database-url
60
64
django-celery-beat
61
65
django-celery-email
···
111
115
cp -r src/baserow/core/management/backup $out/lib/${python.libPrefix}/site-packages/baserow/core/management/
112
116
'';
113
117
114
114
-
# Disable linting checks
115
118
disabledTests = [
119
119
+
# Disable linting checks
116
120
"flake8_plugins"
117
121
];
118
122
···
130
134
DJANGO_SETTINGS_MODULE = "baserow.config.settings.test";
131
135
132
136
meta = with lib; {
133
133
-
homepage = "https://baserow.io";
134
137
description = "No-code database and Airtable alternative";
138
138
+
homepage = "https://baserow.io";
135
139
license = licenses.mit;
136
140
maintainers = with maintainers; [ onny ];
137
141
};