fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
77 lines
1.7 KiB
Nix
77 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
azure-storage-blob,
|
|
boto3,
|
|
buildPythonPackage,
|
|
cryptography,
|
|
django,
|
|
dropbox,
|
|
fetchFromGitHub,
|
|
google-cloud-storage,
|
|
libcloud,
|
|
moto,
|
|
paramiko,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
rsa,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-storages";
|
|
version = "1.14.2";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jschneier";
|
|
repo = "django-storages";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-V0uFZvnBi0B31b/j/u3Co6dd9XcdVefiSkl3XmCTJG4=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
cryptography
|
|
moto
|
|
pytestCheckHook
|
|
rsa
|
|
] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
|
|
|
|
pythonImportsCheck = [ "storages" ];
|
|
|
|
env.DJANGO_SETTINGS_MODULE = "tests.settings";
|
|
|
|
disabledTests = [
|
|
# AttributeError: 'str' object has no attribute 'universe_domain'
|
|
"test_storage_save_gzip"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# ImportError: cannot import name 'mock_s3' from 'moto'
|
|
"tests/test_s3.py"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Collection of custom storage backends for Django";
|
|
changelog = "https://github.com/jschneier/django-storages/blob/${version}/CHANGELOG.rst";
|
|
downloadPage = "https://github.com/jschneier/django-storages/";
|
|
homepage = "https://django-storages.readthedocs.io";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ mmai ];
|
|
};
|
|
}
|