Skip to content

Commit

Permalink
Merge pull request #326134 from sikmir/j2cli
Browse files Browse the repository at this point in the history
python3Packages.j2cli: disable on python 3.12
  • Loading branch information
sikmir authored Jul 13, 2024
2 parents 725cad3 + faad808 commit 4312c48
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions pkgs/development/python-modules/j2cli/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
buildPythonPackage,
fetchPypi,
jinja2,
pythonAtLeast,
pyyaml,
setuptools,
}:
Expand All @@ -11,6 +12,7 @@ buildPythonPackage rec {
pname = "j2cli";
version = "0.3.10";
format = "setuptools";
disabled = pythonAtLeast "3.12";

src = fetchPypi {
inherit pname version;
Expand Down
2 changes: 1 addition & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -38982,7 +38982,7 @@ with pkgs;

jacktrip = callPackage ../applications/audio/jacktrip { };

j2cli = with python3Packages; toPythonApplication j2cli;
j2cli = with python311Packages; toPythonApplication j2cli;

jq-lsp = callPackage ../development/tools/language-servers/jq-lsp { };

Expand Down

0 comments on commit 4312c48

Please sign in to comment.