Files
nixpkgs/pkgs/development/python-modules/django-otp/default.nix
T
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

49 lines
920 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, django
, freezegun
, pythonOlder
, qrcode
}:
buildPythonPackage rec {
pname = "django-otp";
version = "1.1.3";
format = "setuptools";
disabled = pythonOlder "3";
src = fetchFromGitHub {
owner = "django-otp";
repo = "django-otp";
rev = "v${version}";
hash = "sha256-Ac9p7q9yaUr3WTTGxCY16Yo/Z8i1RtnD2g0Aj2pqSXY=";
};
postPatch = ''
patchShebangs manage.py
'';
propagatedBuildInputs = [
django
qrcode
];
nativeCheckInputs = [
freezegun
];
checkPhase = ''
./manage.py test django_otp
'';
pythonImportsCheck = [ "django_otp" ];
meta = with lib; {
homepage = "https://github.com/jazzband/django-model-utils";
description = "Pluggable framework for adding two-factor authentication to Django using one-time passwords";
license = licenses.bsd2;
maintainers = with maintainers; [ ];
};
}