python3Packages.django-ckeditor: init at 6.5.1

This commit is contained in:
Jonas Heinrich
2023-03-30 11:14:10 -04:00
committed by Yt
parent 2bd591fac8
commit fcd1a1a2e9
2 changed files with 62 additions and 0 deletions
@@ -0,0 +1,60 @@
{ lib
, buildPythonPackage
, django
, django-js-asset
, fetchFromGitHub
, python
, setuptools-scm
, django-extensions
, selenium
, pillow
}:
buildPythonPackage rec {
pname = "django-ckeditor";
version = "6.5.1";
format = "pyproject";
src = fetchFromGitHub {
owner = "django-ckeditor";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-Gk8mAG0WIMQZolaE1sRDmzSkfiNHi/BWiotEtIC4WLk=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
django
django-js-asset
pillow
];
DJANGO_SETTINGS_MODULE = "ckeditor_demo.settings";
checkInputs = [
django-extensions
selenium
];
checkPhase = ''
runHook preCheck
${python.interpreter} -m django test
runHook postCheck
'';
pythonImportsCheck = [
"ckeditor"
];
meta = with lib; {
description = " Django admin CKEditor integration";
homepage = "https://github.com/django-ckeditor/django-ckeditor";
license = licenses.bsd3;
maintainers = with maintainers; [ onny ];
};
}
+2
View File
@@ -2580,6 +2580,8 @@ self: super: with self; {
django-celery-results = callPackage ../development/python-modules/django-celery-results { };
django-ckeditor = callPackage ../development/python-modules/django-ckeditor { };
django_classytags = callPackage ../development/python-modules/django_classytags { };
django-cleanup = callPackage ../development/python-modules/django-cleanup { };