summary refs log tree commit diff
path: root/pkgs/development/python-modules/django-storages/default.nix
blob: 1bce8c0d751e173cd8501aef2a4c3e2905106d4a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{ lib
, buildPythonPackage
, fetchFromGitHub

# build-system
, setuptools

# dependencies
, django

# optional-dependencies
, azure-storage-blob
, boto3
, dropbox
, google-cloud-storage
, libcloud
, paramiko

# tests
, cryptography
, moto
, pytestCheckHook
, rsa
}:

buildPythonPackage rec {
  pname = "django-storages";
  version = "1.14";
  format = "pyproject";

  src = fetchFromGitHub {
    owner = "jschneier";
    repo = "django-storages";
    rev = "refs/tags/${version}";
    hash = "sha256-q+vQm1T5/ueGPfwzuUOmSI/nESchqJc4XizJieBsLWc=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  propagatedBuildInputs = [
    django
  ];

  passthru.optional-dependencies = {
    azure = [
      azure-storage-blob
    ];
    boto3 = [
      boto3
    ];
    dropbox = [
      dropbox
    ];
    google = [
      google-cloud-storage
    ];
    libcloud = [
      libcloud
    ];
    s3 = [
      boto3
    ];
    sftp = [
      paramiko
    ];
  };

  pythonImportsCheck = [
    "storages"
  ];

  env.DJANGO_SETTINGS_MODULE = "tests.settings";

  nativeCheckInputs = [
    cryptography
    moto
    pytestCheckHook
    rsa
  ] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);

  meta = with lib; {
    changelog = "https://github.com/jschneier/django-storages/blob/${version}/CHANGELOG.rst";
    description = "Collection of custom storage backends for Django";
    downloadPage = "https://github.com/jschneier/django-storages/";
    homepage = "https://django-storages.readthedocs.io";
    license = licenses.bsd3;
    maintainers = with maintainers; [ mmai ];
  };
}