Skip to content

Commit

Permalink
djangocms-text-ckeditor
Browse files Browse the repository at this point in the history
  • Loading branch information
onny committed Nov 4, 2024
1 parent e7927cd commit a0d72c6
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
pytestCheckHook,
setuptools,
html5lib,
pillow,
django-cms,
}:

buildPythonPackage rec {
pname = "djangocms-text-ckeditor";
version = "5.1.6";
pyproject = true;

disabled = pythonOlder "3.7";

src = fetchPypi {
inherit version;
pname = "djangocms_text_ckeditor";
hash = "sha256-ow2S4FJkO037QUkAf3FheVl2O4BaLw1PSSCVRBhlRX0=";
};

build-system = [ setuptools ];

dependencies = [
django-cms
html5lib
pillow
];

env.DJANGO_SETTINGS_MODULE = "tests.settings";

checkInputs = [ pytestCheckHook ];

doCheck = false;

#pythonImportCheck = [ "django-cms" ];

meta = {
description = "Django Theme tailored to the needs of django CMS";
homepage = "https://django-cms.org";
changelog = "https://github.com/django-cms/djangocms-admin-style/releases/tag/${version}";
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.onny ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3312,6 +3312,8 @@ self: super: with self; {

djangocms-alias = callPackage ../development/python-modules/djangocms-alias { };

djangocms-text-ckeditor = callPackage ../development/python-modules/djangocms-text-ckeditor { };

django-admin-datta = callPackage ../development/python-modules/django-admin-datta { };

django-admin-sortable2 = callPackage ../development/python-modules/django-admin-sortable2 { };
Expand Down

0 comments on commit a0d72c6

Please sign in to comment.