15 buildPythonPackage rec {
16 pname = "django-ninja";
20 disabled = pythonOlder "3.7";
22 src = fetchFromGitHub {
24 repo = "django-ninja";
25 rev = "refs/tags/v${version}";
26 hash = "sha256-fPlw9iTt1V8VXd0d5hw1i9LT96BcDkAlpBu9SPPd+hI=";
29 propagatedBuildInputs = [
34 nativeBuildInputs = [ flit-core ];
44 changelog = "https://github.com/vitalik/django-ninja/releases/tag/v${version}";
45 description = "Web framework for building APIs with Django and Python type hints";
46 homepage = "https://django-ninja.dev";
47 license = licenses.mit;
48 maintainers = with maintainers; [ elohmeier ];