Compare commits

...
Sign in to create a new pull request.

1 commit
main ... bulma

Author SHA1 Message Date
77c69b0758
bulkma 2025-04-14 16:57:08 +02:00
2 changed files with 17 additions and 0 deletions

View file

@ -47,6 +47,22 @@ python3.pkgs.buildPythonPackage {
django-pydantic-field django-pydantic-field
django_4 django_4
setuptools setuptools
(buildPythonPackage rec {
pname = "django-bulma";
version = "0.8.3";
pyproject = true;
src = fetchPypi {
inherit pname version;
sha256 = "sha256-t5S05k9ILed/N2RR982LPIRI62jlokxRuRkGJaCLCzA=";
};
buildInputs = [
poetry-core
];
doCheck = false;
})
]; ];
in in
[ [

View file

@ -63,6 +63,7 @@ INSTALLED_APPS = [
'django_pydantic_field', 'django_pydantic_field',
'debug_toolbar', 'debug_toolbar',
'compressor', 'compressor',
'bulma',
] ]
MIDDLEWARE = [ MIDDLEWARE = [