nixpkgs/pkgs/development/python-modules/django-versatileimagefield/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

34 lines
741 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, django
, pillow
, python-magic
}:
buildPythonPackage rec {
pname = "django-versatileimagefield";
version = "3.0";
src = fetchPypi {
inherit pname version;
hash = "sha256-FlHbLtNthDz7F4jyYBRyopPZuoZyk2m29uVZERI1esc=";
};
propagatedBuildInputs = [ pillow python-magic ];
nativeCheckInputs = [ django ];
# tests not included with pypi release
doCheck = false;
pythonImportsCheck = [ "versatileimagefield" ];
meta = with lib; {
description = "Replaces django's ImageField with a more flexible interface";
homepage = "https://github.com/respondcreate/django-versatileimagefield/";
license = licenses.mit;
maintainers = with maintainers; [ mmai ];
};
}