mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-14 17:04:42 +00:00
133 lines
3.0 KiB
Nix
133 lines
3.0 KiB
Nix
|
{
|
||
|
lib,
|
||
|
fetchFromGitHub,
|
||
|
python3,
|
||
|
plugins ? _ps: [ ],
|
||
|
nixosTests,
|
||
|
}:
|
||
|
let
|
||
|
py = python3.override {
|
||
|
packageOverrides = _final: prev: { django = prev.django_5; };
|
||
|
};
|
||
|
|
||
|
extraBuildInputs = plugins py.pkgs;
|
||
|
in
|
||
|
py.pkgs.buildPythonApplication rec {
|
||
|
pname = "netbox";
|
||
|
version = "4.0.11";
|
||
|
|
||
|
format = "other";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "netbox-community";
|
||
|
repo = "netbox";
|
||
|
rev = "refs/tags/v${version}";
|
||
|
hash = "sha256-0yEz7v5RL1+cqbGDyuyEsywFonJQfPdVIQdL0qLyc04=";
|
||
|
};
|
||
|
|
||
|
patches = [
|
||
|
./custom-static-root.patch
|
||
|
# From https://github.com/netbox-community/netbox/pull/17620
|
||
|
./django-5.1.patch
|
||
|
];
|
||
|
|
||
|
propagatedBuildInputs =
|
||
|
(
|
||
|
with py.pkgs;
|
||
|
[
|
||
|
django
|
||
|
django-cors-headers
|
||
|
django-debug-toolbar
|
||
|
django-filter
|
||
|
django-graphiql-debug-toolbar
|
||
|
django-htmx
|
||
|
django-mptt
|
||
|
django-pglocks
|
||
|
django-prometheus
|
||
|
django-redis
|
||
|
django-rq
|
||
|
django-tables2
|
||
|
django-taggit
|
||
|
django-timezone-field
|
||
|
djangorestframework
|
||
|
drf-spectacular
|
||
|
drf-spectacular-sidecar
|
||
|
feedparser
|
||
|
jinja2
|
||
|
markdown
|
||
|
netaddr
|
||
|
nh3
|
||
|
pillow
|
||
|
psycopg
|
||
|
psycopg.optional-dependencies.c
|
||
|
psycopg.optional-dependencies.pool
|
||
|
pyyaml
|
||
|
requests
|
||
|
social-auth-core
|
||
|
social-auth-app-django
|
||
|
strawberry-graphql
|
||
|
strawberry-django
|
||
|
svgwrite
|
||
|
tablib
|
||
|
|
||
|
# Optional dependencies, kept here for backward compatibility
|
||
|
|
||
|
# for the S3 data source backend
|
||
|
boto3
|
||
|
# for Git data source backend
|
||
|
dulwich
|
||
|
# for error reporting
|
||
|
sentry-sdk
|
||
|
]
|
||
|
++ social-auth-core.passthru.optional-dependencies.openidconnect
|
||
|
)
|
||
|
++ extraBuildInputs;
|
||
|
|
||
|
buildInputs = with py.pkgs; [
|
||
|
mkdocs-material
|
||
|
mkdocs-material-extensions
|
||
|
mkdocstrings
|
||
|
mkdocstrings-python
|
||
|
];
|
||
|
|
||
|
nativeBuildInputs = [ py.pkgs.mkdocs ];
|
||
|
|
||
|
postBuild = ''
|
||
|
PYTHONPATH=$PYTHONPATH:netbox/
|
||
|
python -m mkdocs build
|
||
|
'';
|
||
|
|
||
|
installPhase = ''
|
||
|
mkdir -p $out/opt/netbox
|
||
|
cp -r . $out/opt/netbox
|
||
|
chmod +x $out/opt/netbox/netbox/manage.py
|
||
|
makeWrapper $out/opt/netbox/netbox/manage.py $out/bin/netbox \
|
||
|
--prefix PYTHONPATH : "$PYTHONPATH"
|
||
|
'';
|
||
|
|
||
|
passthru = {
|
||
|
python = python3;
|
||
|
# PYTHONPATH of all dependencies used by the package
|
||
|
pythonPath = py.pkgs.makePythonPath propagatedBuildInputs;
|
||
|
inherit (py.pkgs) gunicorn;
|
||
|
tests = {
|
||
|
netbox = nixosTests.netbox_4_0;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
meta = {
|
||
|
homepage = "https://github.com/netbox-community/netbox";
|
||
|
description = "IP address management (IPAM) and data center infrastructure management (DCIM) tool";
|
||
|
mainProgram = "netbox";
|
||
|
license = lib.licenses.asl20;
|
||
|
maintainers = with lib.maintainers; [
|
||
|
minijackson
|
||
|
n0emis
|
||
|
raitobezarius
|
||
|
];
|
||
|
knownVulnerabilities = [
|
||
|
"Netbox version ${version} is EOL; please upgrade by following the current release notes instructions."
|
||
|
];
|
||
|
};
|
||
|
}
|