Commit 57ebadd5 authored by R. RyanTM's avatar R. RyanTM Committed by Weijia Wang
Browse files

python312Packages.django-simple-captcha: 0.6.1 -> 0.6.2

parent c5ae2c1f
Loading
Loading
Loading
Loading
+3 −5
Original line number Diff line number Diff line
@@ -9,7 +9,6 @@
  # dependencies
  django,
  django-ranged-response,
  djangorestframework,
  pillow,

  # tests
@@ -21,14 +20,14 @@

buildPythonPackage rec {
  pname = "django-simple-captcha";
  version = "0.6.1";
  version = "0.6.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "mbi";
    repo = "django-simple-captcha";
    tag = "v${version}";
    hash = "sha256-2/DDiGvQmNoC8SJabngt8RaHHo48ZDD+62Gb39aeCsg=";
    hash = "sha256-hOvZQCAAlMYaNpAN+junhfgWej92shto7ejhKUPqbX0=";
  };

  build-system = [ setuptools ];
@@ -37,7 +36,6 @@ buildPythonPackage rec {
    django
    pillow
    django-ranged-response
    djangorestframework
  ];

  nativeCheckInputs = [
@@ -58,7 +56,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Customizable Django application to add captcha images to any Django form";
    homepage = "https://github.com/mbi/django-simple-captcha";
    changelog = "https://github.com/mbi/django-simple-captcha/blob/v${version}/CHANGES";
    changelog = "https://github.com/mbi/django-simple-captcha/blob/${src.tag}/CHANGES";
    license = licenses.mit;
    maintainers = with maintainers; [
      mrmebelman