python3Packages.djoser: fix attribute ordering (#419087)

This commit is contained in:
Aleksana
2025-06-23 09:37:38 +08:00
committed by GitHub
@@ -11,6 +11,7 @@
buildPythonPackage rec {
pname = "djoser";
version = "2.3.1";
pyproject = true;
src = fetchFromGitHub {
owner = "sunscrapers";
@@ -19,18 +20,14 @@ buildPythonPackage rec {
hash = "sha256-xPhf7FiJSq5bHfAU5RKbobgnsRh/6cLcXP6vfrLdzJA=";
};
buildInputs = [
build-system = [ poetry-core ];
dependencies = [
django
djangorestframework-simplejwt
social-auth-app-django
];
pyproject = true;
build-system = [
poetry-core
];
# djet isn't packaged yet
# nativeCheckInputs = [ pytestCheckHook ];