python3Packages.django-user-sessions: drop

This commit is contained in:
Robert Schütz
2026-03-15 21:06:52 -07:00
parent 1817eb9ba7
commit 04472c9d26
2 changed files with 0 additions and 34 deletions
@@ -1,32 +0,0 @@
{
fetchFromGitHub,
buildPythonPackage,
setuptools-scm,
lib,
django,
}:
buildPythonPackage rec {
pname = "django-user-sessions";
version = "3.0.3";
pyproject = true;
src = fetchFromGitHub {
owner = "jazzband";
repo = "django-user-sessions";
tag = version;
hash = "sha256-vHLeEmlVil1iJi+YkxL5c04Vq/b5b43tjC2ZcjH4/Ys=";
};
dependencies = [
django
];
build-system = [ setuptools-scm ];
meta = with lib; {
description = "Extend Django sessions with a foreign key back to the user, allowing enumerating all user's sessions.";
homepage = "https://github.com/jazzband/django-user-sessions";
license = licenses.mit;
maintainers = with maintainers; [ kurogeek ];
};
}
-2
View File
@@ -4412,8 +4412,6 @@ self: super: with self; {
django-types = callPackage ../development/python-modules/django-types { };
django-user-sessions = callPackage ../development/python-modules/django-user-sessions { };
django-valkey = callPackage ../development/python-modules/django-valkey { };
django-versatileimagefield =