1{ lib, buildPythonPackage, fetchPypi
2, django
3}:
4
5buildPythonPackage rec {
6 pname = "django-storages";
7 version = "1.11.1";
8
9 src = fetchPypi {
10 inherit pname version;
11 sha256 = "c823dbf56c9e35b0999a13d7e05062b837bae36c518a40255d522fbe3750fbb4";
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}