1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

python3Packages.django-app-helper: init at 3.3.4 (#352837)

This commit is contained in:
Sandro 2024-11-11 15:09:48 +01:00 committed by GitHub
commit 98f6ebc7d4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 127 additions and 0 deletions

View file

@ -0,0 +1,63 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
django,
pythonOlder,
setuptools,
docopt,
dj-database-url,
python,
django-filer,
six,
django-app-helper,
}:
buildPythonPackage rec {
pname = "django-app-helper";
version = "3.3.4";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "nephila";
repo = "django-app-helper";
rev = "refs/tags/${version}";
hash = "sha256-4nFg8B1uxGJVY1jcGr0e2Oi14lqXcFOi0HJ+ogE2ikg=";
};
build-system = [ setuptools ];
dependencies = [
dj-database-url
docopt
six
];
checkInputs = [ django-filer ];
# Tests depend on django-filer, which depends on this package.
# To avoid infinite recursion, we only enable tests when building passthru.tests.
doCheck = false;
checkPhase = ''
${python.interpreter} helper.py
'';
pythonImportsCheck = [ "app_helper" ];
passthru.tests = {
runTests = django-app-helper.overrideAttrs (_: {
doCheck = true;
});
};
meta = {
description = "Helper for Django applications development";
homepage = "https://django-app-helper.readthedocs.io";
changelog = "https://github.com/nephila/django-app-helper/releases/tag/${version}";
license = lib.licenses.gpl2Only;
maintainers = [ lib.maintainers.onny ];
};
}

View file

@ -0,0 +1,60 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
django,
pythonOlder,
pytestCheckHook,
django-polymorphic,
setuptools,
python,
easy-thumbnails,
pillow-heif,
django-app-helper,
distutils,
}:
buildPythonPackage rec {
pname = "django-filer";
version = "3.2.3";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "django-cms";
repo = "django-filer";
rev = "refs/tags/${version}";
hash = "sha256-PoUBnfNymighCsGoJE+iu31lxA9wqVXimFPCytQtPLg=";
};
build-system = [ setuptools ];
dependencies = [
django
django-polymorphic
easy-thumbnails
];
optional-dependencies = {
heif = [ pillow-heif ];
};
checkInputs = [
distutils
django-app-helper
];
checkPhase = ''
runHook preCheck
${python.interpreter} tests/settings.py
runHook postCheck
'';
meta = {
description = "File management application for Django";
homepage = "https://github.com/django-cms/django-filer";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.onny ];
};
}

View file

@ -3333,6 +3333,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 { };
@ -3413,6 +3415,8 @@ self: super: with self; {
django-extensions = callPackage ../development/python-modules/django-extensions { };
django-filer = callPackage ../development/python-modules/django-filer { };
django-filter = callPackage ../development/python-modules/django-filter { };
django-formtools = callPackage ../development/python-modules/django-formtools { };