blob: 31ac1836b5dc4bb8d99ae17e0a539642e382e247 (
plain)
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
|
{
lib,
fetchFromGitHub,
buildPythonPackage,
poetry-core,
django,
pytestCheckHook,
pytest-cov-stub,
}:
buildPythonPackage rec {
pname = "django-split-settings";
version = "1.3.2";
pyproject = true;
src = fetchFromGitHub {
owner = "wemake-services";
repo = "django-split-settings";
rev = version;
hash = "sha256-Bk2/DU+K524mCUvteWT0fIQH5ZgeMHiufMTF+dJYVtc=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "poetry.masonry" "poetry.core.masonry"
'';
build-system = [ poetry-core ];
dependencies = [ django ];
pythonImportsCheck = [ "split_settings" ];
nativeCheckInputs = [
pytestCheckHook
pytest-cov-stub
];
meta = {
description = "Organize Django settings into multiple files and directories";
homepage = "https://github.com/wemake-services/django-split-settings";
maintainers = with lib.maintainers; [ sikmir ];
license = lib.licenses.bsd3;
};
}
|