1{ lib, buildPythonPackage, fetchPypi 2, django 3}: 4 5buildPythonPackage rec { 6 pname = "django-storages"; 7 version = "1.12.3"; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "a475edb2f0f04c4f7e548919a751ecd50117270833956ed5bd585c0575d2a5e7"; 12 }; 13 14 propagatedBuildInputs = [ django ]; 15 16 # django.core.exceptions.ImproperlyConfigured: Requested setting DEFAULT_INDEX_TABLESPACE, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings. 17 doCheck = false; 18 19 meta = with lib; { 20 description = "Collection of custom storage backends for Django"; 21 homepage = "https://django-storages.readthedocs.io"; 22 license = licenses.bsd3; 23 maintainers = with maintainers; [ mmai ]; 24 }; 25}