djlint: fix build

This commit is contained in:
Gaetan Lepage 2024-01-18 16:13:13 +01:00
parent 06e59c0541
commit 380f76459a

View File

@ -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; [