Merge pull request #281800 from GaetanLepage/djlint

djlint: fix build
This commit is contained in:
Nick Cao 2024-01-18 10:24:55 -05:00 committed by GitHub
commit 00e915a58d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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