Initial dendritic rewrite

This commit is contained in:
2026-04-04 16:46:30 -04:00
parent 06a8e77924
commit f080e311d1
131 changed files with 3342 additions and 3148 deletions

View File

@@ -0,0 +1,44 @@
{
lib,
python3Packages,
fetchFromGitHub,
...
}:
with python3Packages;
buildPythonApplication rec {
pname = "heybrochecklog";
version = "v1.4.7";
src = fetchFromGitHub {
owner = "doujincafe";
repo = "hbcl";
rev = version;
sha256 = "sha256-LB2Xn6oS3iBL/+1vMRuj0cmRc9tRiCjgJ5axm4tYkdg=";
};
format = "pyproject";
doCheck = false;
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
faust-cchardet
chardet
pprp # Comes from the overlay, not part of nixpkgs
];
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'poetry.masonry.api' 'poetry.core.masonry.api' \
--replace 'poetry>=' 'poetry-core>='
'';
meta = {
description = "A doujin café discord community maintained log checker";
homepage = "https://github.com/doujincafe/hbcl";
license = lib.licenses.asl20;
};
}