Files
nixos/overlays/django-rapyd-modernauth.nix
T

44 lines
755 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, click
, django
, python-dotenv
, pytz
, setuptools
, sqlparse
, zipp
2023-06-29 10:03:17 -05:00
}:
2023-06-13 09:39:32 -05:00
buildPythonPackage rec {
pname = "django-rapyd-modernauth";
version = "0.0.4";
2023-06-13 09:39:32 -05:00
src = fetchPypi {
inherit pname version;
sha256 = "sha256-kDZjI32LcKsmLI38ruINKOUfi6lWTIqXF5qIQHi0LeQ=";
};
2023-06-13 09:39:32 -05:00
meta = with lib; {
description = "A Django application that provides a custom User model where the username is the email address.";
homepage = "https://github.com/karthicraghupathi/django_rapyd_modernauth";
license = licenses.afl20;
maintainers = [ ];
};
2023-06-13 09:39:32 -05:00
doCheck = false;
2023-06-13 09:39:32 -05:00
buildInputs = [
click
django
python-dotenv
pytz
setuptools
sqlparse
zipp
];
2023-06-13 09:39:32 -05:00
nativeBuildInputs = [
];
2023-06-13 09:39:32 -05:00
}