tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ablog: 0.10.33.post1 -> 0.11.14.post1
Theodore Ni
2 years ago
9203d7fb
0a088cac
+19
-10
1 changed file
expand all
collapse all
unified
split
pkgs
applications
misc
ablog
default.nix
+19
-10
pkgs/applications/misc/ablog/default.nix
···
3
3
, fetchPypi
4
4
}:
5
5
6
6
-
with python3.pkgs;
7
7
-
8
8
-
buildPythonApplication rec {
6
6
+
python3.pkgs.buildPythonApplication rec {
9
7
pname = "ablog";
10
10
-
version = "0.10.33.post1";
8
8
+
version = "0.11.4.post1";
9
9
+
format = "pyproject";
11
10
12
11
src = fetchPypi {
13
12
inherit pname version;
14
14
-
sha256 = "sha256-+vrVQ4sItCXrSCzNXyKk6/6oDBOyfyD7iNWzmcbE/BQ=";
13
13
+
hash = "sha256-Zyvx7lVUQtjoGsSpFmH8pFrgTGgsFd4GMsL3fXKtUpU=";
15
14
};
16
15
17
17
-
propagatedBuildInputs = [
16
16
+
nativeBuildInputs = with python3.pkgs; [
17
17
+
setuptools
18
18
+
setuptools-scm
19
19
+
wheel
20
20
+
];
21
21
+
22
22
+
propagatedBuildInputs = with python3.pkgs; [
23
23
+
docutils
18
24
feedgen
19
19
-
sphinx
20
25
invoke
21
21
-
watchdog
26
26
+
packaging
22
27
python-dateutil
28
28
+
sphinx
29
29
+
watchdog
23
30
];
24
31
25
25
-
nativeCheckInputs = [
32
32
+
nativeCheckInputs = with python3.pkgs; [
26
33
pytestCheckHook
27
34
];
28
35
29
29
-
nativeBuildInputs = [ setuptools-scm ];
36
36
+
pytestFlagsArray = [
37
37
+
"--rootdir" "src/ablog"
38
38
+
];
30
39
31
40
meta = with lib; {
32
41
description = "ABlog for blogging with Sphinx";