python311Packages.django-otp: 1.1.3 -> 1.3.0post1

https://github.com/django-otp/django-otp/blob/v1.3.0post1/CHANGES.rst
This commit is contained in:
Martin Weinelt 2024-03-14 00:59:33 +01:00
parent cea012f9b2
commit 1e89c24853
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -1,46 +1,63 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, hatchling
, django
, freezegun
, pythonOlder
, qrcode
, pytest
, python
}:
buildPythonPackage rec {
pname = "django-otp";
version = "1.1.3";
format = "setuptools";
disabled = pythonOlder "3";
version = "1.3.0post1";
pyproject = true;
src = fetchFromGitHub {
owner = "django-otp";
repo = "django-otp";
rev = "v${version}";
hash = "sha256-Ac9p7q9yaUr3WTTGxCY16Yo/Z8i1RtnD2g0Aj2pqSXY=";
hash = "sha256-Q8YTCYERyoAXenSiDabxuxaWiD6ZeJKKKgaR/Rg3y20=";
};
postPatch = ''
patchShebangs manage.py
'';
build-system = [
hatchling
];
propagatedBuildInputs = [
dependencies = [
django
qrcode
];
env.DJANGO_SETTINGS_MODUOLE = "test.test_project.settings";
nativeCheckInputs = [
freezegun
pytest
];
checkPhase = ''
./manage.py test django_otp
runHook preCheck
export PYTHONPATH=$PYTHONPATH:test
export DJANGO_SETTINGS_MODULE=test_project.settings
${python.interpreter} -m django test django_otp
runHook postCheck
'';
pythonImportsCheck = [ "django_otp" ];
pytestFlagsArray = [
"src/django_otp/test.py"
];
pythonImportsCheck = [
"django_otp"
];
meta = with lib; {
homepage = "https://github.com/jazzband/django-model-utils";
homepage = "https://github.com/django-otp/django-otp";
changelog = "https://github.com/django-otp/django-otp/blob/${src.rev}/CHANGES.rst";
description = "Pluggable framework for adding two-factor authentication to Django using one-time passwords";
license = licenses.bsd2;
maintainers = with maintainers; [ ];