Skip to content
Snippets Groups Projects
Verified Commit 94e08ad2 authored by Vladimír Čunát's avatar Vladimír Čunát
Browse files

distro/pkg/nix: drop restriction on jinja2 version

parent 9f9653e4
No related branches found
No related tags found
1 merge request!122CI and nix tweaks
Pipeline #101788 passed
......@@ -14,6 +14,11 @@ python3Packages.buildPythonApplication rec {
sha256 = "FIXME"; # would be {{ src_hash }} if tarball was used
};
# Old jinja2 isn't in nixpkgs anymore.
postPatch = ''
substituteInPlace setup.cfg --replace 'jinja2<3.1' 'jinja2'
'';
propagatedBuildInputs = with python3Packages; [
# copy&pasted requirements.txt (almost exactly)
beautifulsoup4 # upstream version detection
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment