Commit b02939ff authored by Fabian Affolter's avatar Fabian Affolter
Browse files
parent b4ee3c3c
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -10,16 +10,16 @@

buildPythonPackage rec {
  pname = "django-sesame";
  version = "3.2.1";
  format = "pyproject";
  version = "3.2.2";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "aaugustin";
    repo = pname;
    repo = "django-sesame";
    rev = "refs/tags/${version}";
    hash = "sha256-R7ySuop7E1lkxtRSVNFfzyb3Ba1mW0o6PDiTxTztK/Y=";
    hash = "sha256-8jbYhD/PfPnutJZonmdrqLIQdXiUHF12w0M9tuyyDz0=";
  };

  nativeBuildInputs = [
@@ -46,6 +46,7 @@ buildPythonPackage rec {
  meta = with lib; {
    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 = licenses.bsd3;
    maintainers = with maintainers; [ elohmeier ];
  };