567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
50 lines
966 B
Nix
50 lines
966 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
django,
|
|
fetchFromGitHub,
|
|
poetry-core,
|
|
python,
|
|
pythonOlder,
|
|
ua-parser,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-sesame";
|
|
version = "3.2.3";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aaugustin";
|
|
repo = "django-sesame";
|
|
tag = version;
|
|
hash = "sha256-JpbmcV5hAZkW15cizsAJhmTda4xtML0EY/PJdVSInUs=";
|
|
};
|
|
|
|
nativeBuildInputs = [ poetry-core ];
|
|
|
|
nativeCheckInputs = [
|
|
django
|
|
ua-parser
|
|
];
|
|
|
|
pythonImportsCheck = [ "sesame" ];
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
|
|
${python.interpreter} -m django test --settings=tests.settings
|
|
|
|
runHook postCheck
|
|
'';
|
|
|
|
meta = {
|
|
description = "URLs with authentication tokens for automatic login";
|
|
homepage = "https://github.com/aaugustin/django-sesame";
|
|
changelog = "https://github.com/aaugustin/django-sesame/blob/${version}/docs/changelog.rst";
|
|
license = lib.licenses.bsd3;
|
|
};
|
|
}
|