Skip to content

Commit

Permalink
django-app-helper
Browse files Browse the repository at this point in the history
  • Loading branch information
onny committed Oct 26, 2024
1 parent 5ccb17d commit 4d76088
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 0 deletions.
57 changes: 57 additions & 0 deletions pkgs/development/python-modules/django-app-helper/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
{
lib,
buildPythonPackage,
fetchPypi,
django,
pythonOlder,
pytestCheckHook,
setuptools,
django-classy-tags,
django-formtools,
django-treebeard,
django-sekizai,
djangocms-admin-style,
six,
docopt,
dj-database-url,
}:

buildPythonPackage rec {
pname = "django-app-helper";
version = "3.3.4";
pyproject = true;

disabled = pythonOlder "3.7";

src = fetchPypi {
inherit pname version;
hash = "sha256-7kqIUiJ9DPVYaoWUjfttgrcqiEa548svd6JeE2CtOK4=";
};

build-system = [ setuptools ];

dependencies = [
django
django-classy-tags
django-formtools
django-treebeard
django-sekizai

six
docopt
dj-database-url
];

#checkInputs = [ pytestCheckHook ];
doCheck = false;

pythonImportCheck = [ "app_helper" ];

meta = {
description = "Lean enterprise content management powered by Django";
homepage = "https://django-cms.org";
changelog = "https://github.com/django-cms/django-cms/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 @@ -3310,6 +3310,8 @@ self: super: with self; {

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

django-app-helper = callPackage ../development/python-modules/django-app-helper { };

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

django-auth-ldap = callPackage ../development/python-modules/django-auth-ldap { };
Expand Down

0 comments on commit 4d76088

Please sign in to comment.