12 buildPythonPackage rec {
13 pname = "django-sesame";
17 disabled = pythonOlder "3.8";
19 src = fetchFromGitHub {
21 repo = "django-sesame";
22 rev = "refs/tags/${version}";
23 hash = "sha256-8jbYhD/PfPnutJZonmdrqLIQdXiUHF12w0M9tuyyDz0=";
26 nativeBuildInputs = [ poetry-core ];
33 pythonImportsCheck = [ "sesame" ];
38 ${python.interpreter} -m django test --settings=tests.settings
44 description = "URLs with authentication tokens for automatic login";
45 homepage = "https://github.com/aaugustin/django-sesame";
46 changelog = "https://github.com/aaugustin/django-sesame/blob/${version}/docs/changelog.rst";
47 license = licenses.bsd3;