Skip to content

Commit

Permalink
python3Packages.easy-thumbnails: 2.8.5 -> 2.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
onny committed Nov 3, 2024
1 parent 4275af2 commit ffa28b9
Showing 1 changed file with 35 additions and 14 deletions.
49 changes: 35 additions & 14 deletions pkgs/development/python-modules/easy-thumbnails/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,42 +2,63 @@
lib,
buildPythonPackage,
django,
fetchPypi,
fetchFromGitHub,
pillow,
pythonOlder,
reportlab,
svglib,
pytestCheckHook,
pytest-django,
setuptools,
testfixtures,
}:

buildPythonPackage rec {
pname = "easy-thumbnails";
version = "2.10";
format = "setuptools";
version = "2.10.0";
pyproject = true;

disabled = pythonOlder "3.6";
disabled = pythonOlder "3.9";

src = fetchPypi {
inherit pname version;
hash = "sha256-0AlGL815Ht8kluXtRtBEcS4aBrfUYA5M8oEgAumQTvU=";
src = fetchFromGitHub {
owner = "SmileyChris";
repo = "easy-thumbnails";
rev = "refs/tags/${version}";
hash = "sha256-8JTHYQIBbu/4fknK2ZEQeDSgaxKGDfflxumcFMpaGQk=";
};

propagatedBuildInputs = [
build-system = [ setuptools ];

dependencies = [
django
pillow
svglib
reportlab
svglib
];

nativeCheckInputs = [
pytestCheckHook
pytest-django
];

checkInputs = [ testfixtures ];

disabledTests = [
# AssertionError: 'ERROR' != 'INFO'
"test_postprocessor"
];

# Tests require a Django instance which is setup
doCheck = false;
preCheck = ''
export DJANGO_SETTINGS_MODULE="easy_thumbnails.tests.settings"
'';

pythonImportsCheck = [ "easy_thumbnails" ];

meta = with lib; {
meta = {
description = "Easy thumbnails for Django";
homepage = "https://github.com/SmileyChris/easy-thumbnails";
changelog = "https://github.com/SmileyChris/easy-thumbnails/blob/${version}/CHANGES.rst";
license = licenses.bsd3;
maintainers = [ ];
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.onny ];
};
}

0 comments on commit ffa28b9

Please sign in to comment.