nixpkgs/pkgs/development/python-modules/django-pattern-library/default.nix

60 lines
1.2 KiB
Nix

{
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 = with lib; {
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 = licenses.bsd3;
maintainers = with maintainers; [ sephi ];
};
}