python312Packages.django_4: normalize pname

This commit is contained in:
Felix Buehler 2024-03-13 22:42:13 +01:00
parent 7154ccbbd5
commit 19fee24f51
1 changed files with 3 additions and 2 deletions

View File

@ -41,14 +41,15 @@
}:
buildPythonPackage rec {
pname = "Django";
pname = "django";
version = "4.2.11";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
pname = "Django";
inherit version;
hash = "sha256-bm/z2y2N0MmGtO7IVUyOT5GbXB/2KltDkMF6/y7W5cQ=";
};