14 buildPythonPackage rec {
15 pname = "django-ckeditor";
19 disabled = pythonOlder "3.8";
21 src = fetchFromGitHub {
22 owner = "django-ckeditor";
24 rev = "refs/tags/${version}";
25 hash = "sha256-mZQ5s3YbumYmT0zRWPFIvzt2TbtDLvVcJjZVAwn31E8=";
32 propagatedBuildInputs = [
38 DJANGO_SETTINGS_MODULE = "ckeditor_demo.settings";
47 ${python.interpreter} -m django test
51 pythonImportsCheck = [
56 description = " Django admin CKEditor integration";
57 homepage = "https://github.com/django-ckeditor/django-ckeditor";
58 changelog = "https://github.com/django-ckeditor/django-ckeditor/blob/${version}/CHANGELOG.rst";
59 license = licenses.bsd3;
60 maintainers = with maintainers; [ onny ];