Help with flake/poetry2nix: unsupported build system requirement pyScss

I am trying to run LNbits via a flake, but it throws the following error:

$ git clone https://github.com/lnbits/lnbits.git
$ cd lnbits
$ nix run
error: unsupported build system requirement pyScss

I tried to sort out the issue with the upstream to no avail, they also see the error and are unsure what is causing it.

Maybe some flake/poetry2nix guru can help us here?

Nevermind, we found the issue. The fix is:

diff --git a/pyproject.toml b/pyproject.toml
index 71512afe1..18748713d 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -54,7 +54,7 @@ flake8 = { version = "^6.0.0", python = ">=3.8.1" }
 pylint = { version = "^2.15.10", python = ">=3.7.2" }
 
 [build-system]
-requires = ["poetry-core>=1.0.0", "pyScss"]
+requires = ["poetry-core>=1.0.0", "pyscss"]
 build-backend = "poetry.core.masonry.api"
 
 [tool.poetry.scripts]