14 buildPythonPackage rec {
15 pname = "django-ninja";
19 disabled = pythonOlder "3.7";
21 src = fetchFromGitHub {
23 repo = "django-ninja";
24 rev = "refs/tags/v${version}";
25 hash = "sha256-pvpYDuUZi0Gr5RbBWc91LzgmRLhihrhsKaD/AWN5+Bo=";
28 propagatedBuildInputs = [ django pydantic ];
30 nativeBuildInputs = [ flit-core ];
40 changelog = "https://github.com/vitalik/django-ninja/releases/tag/v${version}";
41 description = "Web framework for building APIs with Django and Python type hints";
42 homepage = "https://django-ninja.dev";
43 license = licenses.mit;
44 maintainers = with maintainers; [ elohmeier ];