Merge pull request #250314 from fabaff/django-ckeditor-fix

python311Packages.django-ckeditor: 6.5.1 -> 6.7
This commit is contained in:
Matthias Beyer 2023-08-20 11:46:24 +02:00 committed by GitHub
commit 17e3c3877c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,25 +1,28 @@
{ lib
, buildPythonPackage
, django
, django-extensions
, django-js-asset
, fetchFromGitHub
, python
, setuptools-scm
, django-extensions
, selenium
, pillow
, python
, pythonOlder
, selenium
, setuptools-scm
}:
buildPythonPackage rec {
pname = "django-ckeditor";
version = "6.5.1";
version = "6.7";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "django-ckeditor";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-Gk8mAG0WIMQZolaE1sRDmzSkfiNHi/BWiotEtIC4WLk=";
hash = "sha256-mZQ5s3YbumYmT0zRWPFIvzt2TbtDLvVcJjZVAwn31E8=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
@ -54,6 +57,7 @@ buildPythonPackage rec {
meta = with lib; {
description = " Django admin CKEditor integration";
homepage = "https://github.com/django-ckeditor/django-ckeditor";
changelog = "https://github.com/django-ckeditor/django-ckeditor/blob/${version}/CHANGELOG.rst";
license = licenses.bsd3;
maintainers = with maintainers; [ onny ];
};