python3Packages.sorl_thumbnail: add missing dependencies

This commit is contained in:
Jonathan Ringer 2020-06-08 11:54:53 -07:00 committed by Frederik Rietdijk
parent 4942204374
commit 88264ac51a

View file

@ -1,6 +1,7 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, setuptools_scm
}:
buildPythonPackage rec {
@ -12,6 +13,7 @@ buildPythonPackage rec {
sha256 = "66771521f3c0ed771e1ce8e1aaf1639ebff18f7f5a40cfd3083da8f0fe6c7c99";
};
nativeBuildInputs = [ setuptools_scm ];
# Disabled due to an improper configuration error when tested against django. This looks like something broken in the test cases for sorl.
doCheck = false;