Unverified Commit 00e915a5 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

Merge pull request #281800 from GaetanLepage/djlint

djlint: fix build
parents f5a9fea2 380f7645
Loading
Loading
Loading
Loading
+8 −3
Original line number Diff line number Diff line
@@ -11,12 +11,17 @@ python3.pkgs.buildPythonApplication rec {
  src = fetchFromGitHub {
    owner = "Riverside-Healthcare";
    repo = "djlint";
    rev = "v${version}";
    rev = "refs/tags/v${version}";
    hash = "sha256-p9RIzX9zoZxBrhiNaIeCX9OgfQm/lXNwYsh6IcsnIVk=";
  };

  nativeBuildInputs = [
    python3.pkgs.poetry-core
  nativeBuildInputs = with python3.pkgs; [
    poetry-core
    pythonRelaxDepsHook
  ];

  pythonRelaxDeps = [
    "pathspec"
  ];

  propagatedBuildInputs = with python3.pkgs; [