Merge pull request #327247 from r-ryantm/auto-update/python312Packages.jinja2-git

python312Packages.jinja2-git: 1.3.0 -> 1.4.0
This commit is contained in:
OTABI Tomoya
2024-08-01 12:59:32 +09:00
committed by GitHub
@@ -9,21 +9,21 @@
buildPythonPackage rec {
pname = "jinja2-git";
version = "1.3.0";
version = "1.4.0";
pyproject = true;
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "wemake-services";
repo = "jinja2-git";
rev = "refs/tags/${version}";
hash = "sha256-XuN2L3/HLcZ/WPWiCtufDOmkxj+q4I6IOgjrGQHfNLk=";
hash = "sha256-ZcKRLHcZ/rpiUyYK4ifDJaZriN+YyRF1RKCjIKum98U=";
};
nativeBuildInputs = [ poetry-core ];
build-system = [ poetry-core ];
propagatedBuildInputs = [ jinja2 ];
dependencies = [ jinja2 ];
# the tests need to be run on the git repository
doCheck = false;