forked from Fediversity/Fediversity
bulkma
This commit is contained in:
parent
195889ef2c
commit
77c69b0758
2 changed files with 17 additions and 0 deletions
|
@ -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
|
||||||
[
|
[
|
||||||
|
|
|
@ -63,6 +63,7 @@ INSTALLED_APPS = [
|
||||||
'django_pydantic_field',
|
'django_pydantic_field',
|
||||||
'debug_toolbar',
|
'debug_toolbar',
|
||||||
'compressor',
|
'compressor',
|
||||||
|
'bulma',
|
||||||
]
|
]
|
||||||
|
|
||||||
MIDDLEWARE = [
|
MIDDLEWARE = [
|
||||||
|
|
Loading…
Add table
Reference in a new issue