python3Packages.django-sslserver: init at 0.15 (#504012)

This commit is contained in:
dotlambda
2026-03-30 04:11:29 +00:00
committed by GitHub
2 changed files with 41 additions and 0 deletions
@@ -0,0 +1,39 @@
{
buildPythonPackage,
django,
lib,
setuptools-scm,
fetchFromGitHub,
}:
buildPythonPackage (finalAttrs: {
pname = "django-sslserver";
version = "0.15";
pyproject = true;
src = fetchFromGitHub {
owner = "teddziuba";
repo = "django-sslserver";
tag = "v${finalAttrs.version}";
hash = "sha256-RIhqvwJQ7fYZT1SAkbcBNl2jX7j7UZND8e5Vra+ibHA=";
};
build-system = [ setuptools-scm ];
dependencies = [
django
];
# No tests on upstream
doCheck = false;
pythonImportsCheck = [ "sslserver" ];
meta = {
description = "SSL-enabled development server for Django";
homepage = "https://github.com/teddziuba/django-sslserver";
changelog = "https://github.com/teddziuba/django-sslserver/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ kurogeek ];
};
})
+2
View File
@@ -4378,6 +4378,8 @@ self: super: with self; {
django-sql-utils = callPackage ../development/python-modules/django-sql-utils { };
django-sslserver = callPackage ../development/python-modules/django-sslserver { };
django-statici18n = callPackage ../development/python-modules/django-statici18n { };
django-storages = callPackage ../development/python-modules/django-storages { };