depot/nix/pkgs/baserow/backend/pynixify/packages/drf-spectacular/default.nix

28 lines
848 B
Nix

# WARNING: This file was automatically generated. You should avoid editing it.
# If you run pynixify again, the file will be either overwritten or
# deleted, and you will lose the changes you made to it.
{ buildPythonPackage, django, djangorestframework, fetchPypi, inflection
, jsonschema, lib, pyyaml, uritemplate }:
buildPythonPackage rec {
pname = "drf-spectacular";
version = "0.21.2";
src = fetchPypi {
inherit pname version;
sha256 = "0x97m8sf7jg5vk3x3dl49niqy311f33ljq4h2jxf2qsvb747hyma";
};
propagatedBuildInputs =
[ django djangorestframework uritemplate pyyaml jsonschema inflection ];
# TODO FIXME
doCheck = false;
meta = with lib; {
description =
"Sane and flexible OpenAPI 3 schema generation for Django REST framework";
homepage = "https://github.com/tfranzel/drf-spectacular";
};
}