Files
nixpkgs/pkgs/development/python-modules/drf-spectacular-sidecar/default.nix
T
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

34 lines
730 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
django,
}:
buildPythonPackage rec {
pname = "drf-spectacular-sidecar";
version = "2023.9.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "tfranzel";
repo = "drf-spectacular-sidecar";
rev = version;
hash = "sha256-EoQKbxzXEuKC50/W1/tBB2wASJZmNNwg9r1qhIB4Ws8=";
};
propagatedBuildInputs = [ django ];
# no tests
doCheck = false;
pythonImportsCheck = [ "drf_spectacular_sidecar" ];
meta = with lib; {
description = "Serve self-contained distribution builds of Swagger UI and Redoc with Django";
homepage = "https://github.com/tfranzel/drf-spectacular-sidecar";
license = licenses.bsd3;
maintainers = [ ];
};
}