depot/third_party/nixpkgs/pkgs/development/python-modules/django-sesame/default.nix
Default email 5e7c2d6cef Project import generated by Copybara.
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
2023-10-09 21:29:22 +02:00

52 lines
937 B
Nix

{ lib
, buildPythonPackage
, django
, fetchFromGitHub
, poetry-core
, python
, pythonOlder
, ua-parser
}:
buildPythonPackage rec {
pname = "django-sesame";
version = "3.2.1";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "aaugustin";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-R7ySuop7E1lkxtRSVNFfzyb3Ba1mW0o6PDiTxTztK/Y=";
};
nativeBuildInputs = [
poetry-core
];
nativeCheckInputs = [
django
ua-parser
];
pythonImportsCheck = [
"sesame"
];
checkPhase = ''
runHook preCheck
${python.interpreter} -m django test --settings=tests.settings
runHook postCheck
'';
meta = with lib; {
description = "URLs with authentication tokens for automatic login";
homepage = "https://github.com/aaugustin/django-sesame";
license = licenses.bsd3;
maintainers = with maintainers; [ elohmeier ];
};
}