11 buildPythonPackage rec {
12 pname = "django-crispy-forms";
16 src = fetchFromGitHub {
17 owner = "django-crispy-forms";
18 repo = "django-crispy-forms";
20 hash = "sha256-R2s2dUsVw5p7xn4yWeFcE7au8yHWXjFgS5jjCBveg04=";
23 propagatedBuildInputs = [
28 # FIXME: RuntimeError: Model class source.crispy_forms.tests.forms.CrispyTestModel doesn't declare an explicit app_label and isn't in an application in INSTALLED_APPS.
37 "--ds=crispy_forms.tests.test_settings"
41 pythonImportsCheck = [ "crispy_forms" ];
44 description = "Best way to have DRY Django forms";
45 homepage = "https://django-crispy-forms.readthedocs.io/en/latest/";
46 license = licenses.mit;
47 maintainers = with maintainers; [ ambroisie ];