2023-04-29 16:46:19 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
2023-11-16 04:20:00 +00:00
|
|
|
, pythonOlder
|
2023-04-29 16:46:19 +00:00
|
|
|
, django
|
|
|
|
|
|
|
|
# optionals
|
|
|
|
, bleach
|
|
|
|
, docutils
|
|
|
|
, markdown
|
|
|
|
, pygments
|
|
|
|
, python-creole
|
|
|
|
, smartypants
|
|
|
|
, textile
|
|
|
|
|
|
|
|
# tests
|
|
|
|
, pytest-django
|
|
|
|
, pytestCheckHook
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "django-markup";
|
2023-11-16 04:20:00 +00:00
|
|
|
version = "1.8.1";
|
|
|
|
pyproject = true;
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.8";
|
2023-04-29 16:46:19 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "bartTC";
|
|
|
|
repo = "django-markup";
|
|
|
|
rev = "refs/tags/v${version}";
|
2023-11-16 04:20:00 +00:00
|
|
|
hash = "sha256-Hhcp4wVJEcYV1lEZ2jWf7nOlt5m4lVAfC6VmKIdxf4c=";
|
2023-04-29 16:46:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
postPatch = ''
|
2023-05-24 13:37:59 +00:00
|
|
|
sed -i "/--cov/d" pyproject.toml
|
2023-04-29 16:46:19 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
django
|
|
|
|
];
|
|
|
|
|
|
|
|
passthru.optional-dependencies = {
|
|
|
|
all_filter_dependencies = [
|
|
|
|
bleach
|
|
|
|
docutils
|
|
|
|
markdown
|
|
|
|
pygments
|
|
|
|
python-creole
|
|
|
|
smartypants
|
|
|
|
textile
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
pythonImportsCheck = [
|
|
|
|
"django_markup"
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeCheckInputs = [
|
|
|
|
pytest-django
|
|
|
|
pytestCheckHook
|
|
|
|
] ++ passthru.optional-dependencies.all_filter_dependencies;
|
|
|
|
|
|
|
|
env.DJANGO_SETTINGS_MODULE = "django_markup.tests";
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Generic Django application to convert text with specific markup to html.";
|
|
|
|
homepage = "https://github.com/bartTC/django-markup";
|
|
|
|
changelog = "https://github.com/bartTC/django-markup/blob/v${version}/CHANGELOG.rst";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ hexa ];
|
|
|
|
};
|
|
|
|
}
|