python312Packages.dj-database-url: cleanup

This commit is contained in:
Gaetan Lepage
2025-04-18 13:54:57 +02:00
parent 79b9620e82
commit debfbc997b
@@ -3,7 +3,6 @@
buildPythonPackage,
fetchFromGitHub,
django,
pythonOlder,
setuptools,
typing-extensions,
}:
@@ -13,8 +12,6 @@ buildPythonPackage rec {
version = "2.3.0";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "jazzband";
repo = "dj-database-url";
@@ -34,11 +31,11 @@ buildPythonPackage rec {
pythonImportsCheck = [ "dj_database_url" ];
meta = with lib; {
meta = {
description = "Use Database URLs in your Django Application";
homepage = "https://github.com/jazzband/dj-database-url";
changelog = "https://github.com/jazzband/dj-database-url/blob/v${version}/CHANGELOG.md";
license = licenses.bsd2;
license = lib.licenses.bsd2;
maintainers = [ ];
};
}