staticjinja: 3.0.1 -> 4.1.0

This commit is contained in:
Francesco Gazzetta 2021-08-12 18:43:07 +02:00
parent 4520cb7f0e
commit ea4697e414
3 changed files with 6 additions and 6 deletions

View file

@ -273,7 +273,7 @@ Superuser created successfully.
<listitem> <listitem>
<para> <para>
The <literal>staticjinja</literal> package has been upgraded The <literal>staticjinja</literal> package has been upgraded
from 1.0.4 to 3.0.1 from 1.0.4 to 4.1.0
</para> </para>
</listitem> </listitem>
<listitem> <listitem>

View file

@ -105,7 +105,7 @@ subsonic-compatible api. Available as [navidrome](#opt-services.navidrome.enable
Superuser created successfully. Superuser created successfully.
``` ```
- The `staticjinja` package has been upgraded from 1.0.4 to 3.0.1 - The `staticjinja` package has been upgraded from 1.0.4 to 4.1.0
- The `erigon` ethereum node has moved to a new database format in `2021-05-04`, and requires a full resync - The `erigon` ethereum node has moved to a new database format in `2021-05-04`, and requires a full resync

View file

@ -2,7 +2,7 @@
, fetchFromGitHub , fetchFromGitHub
, buildPythonPackage , buildPythonPackage
, poetry , poetry
, docopt , docopt-ng
, easywatch , easywatch
, jinja2 , jinja2
, pytestCheckHook , pytestCheckHook
@ -14,7 +14,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "staticjinja"; pname = "staticjinja";
version = "3.0.1"; version = "4.1.0";
format = "pyproject"; format = "pyproject";
# No tests in pypi # No tests in pypi
@ -22,7 +22,7 @@ buildPythonPackage rec {
owner = "staticjinja"; owner = "staticjinja";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "sha256-W4q0vG8Kl2gCmA8UnUbdiGRtghhdnWxIJXFIIa6BogA="; sha256 = "sha256-4IL+7ncJPd1e7k5oFRjQ6yvDjozcBAAZPf88biNTiLU=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -31,7 +31,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ propagatedBuildInputs = [
jinja2 jinja2
docopt docopt-ng
easywatch easywatch
]; ];