blob: 8dddb5b7c971925b8cba68944c4c4dcf856561fd (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
{
buildPythonPackage,
fetchFromGitHub,
lib,
# build-system
poetry-core,
# dependencies
django,
markdown,
pyyaml,
# tests
beautifulsoup4,
pytestCheckHook,
pytest-django,
mkdocs,
}:
buildPythonPackage rec {
pname = "django-pattern-library";
version = "1.5.0";
pyproject = true;
src = fetchFromGitHub {
owner = "torchbox";
repo = "django-pattern-library";
tag = "v${version}";
hash = "sha256-urK34rlBU5GuEOlUtmJLGv6wlTP5H/RMAkwQu5S2Jbo=";
};
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [
django
pyyaml
markdown
];
nativeCheckInputs = [
beautifulsoup4
pytestCheckHook
pytest-django
mkdocs # only needed for jinja2, we don't build docs
];
env.DJANGO_SETTINGS_MODULE = "tests.settings.dev";
pythonImportsCheck = [ "pattern_library" ];
meta = {
description = "UI pattern libraries for Django templates";
homepage = "https://github.com/torchbox/django-pattern-library/";
changelog = "https://github.com/torchbox/django-pattern-library/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ sephi ];
};
}
|