mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 11:40:45 +00:00
93 lines
2.1 KiB
Nix
93 lines
2.1 KiB
Nix
{ python3
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, nixosTests
|
|
, lib
|
|
|
|
, plugins ? ps: []
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "peering-manager";
|
|
version = "1.8.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-N34piaSP+QKZzjT42nAR47DTtqGtZ/GMeTeTyRQw3/4=";
|
|
};
|
|
|
|
patches = [
|
|
# restore support unix sockets for redis connections
|
|
# https://github.com/peering-manager/peering-manager/pull/773
|
|
(fetchpatch {
|
|
url = "https://github.com/peering-manager/peering-manager/commit/ff66823c04d8c545a46dcec91d61eda7c21f99aa.patch";
|
|
hash = "sha256-x5E0LFhGrc5LPY4pwAMNUtigltLGqqbRCe1PIm0yLA8=";
|
|
})
|
|
];
|
|
|
|
format = "other";
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
django
|
|
djangorestframework
|
|
django-redis
|
|
django-debug-toolbar
|
|
django-filter
|
|
django-postgresql-netfields
|
|
django-prometheus
|
|
django-rq
|
|
django-tables2
|
|
django-taggit
|
|
drf-spectacular
|
|
drf-spectacular-sidecar
|
|
jinja2
|
|
markdown
|
|
napalm
|
|
packaging
|
|
psycopg2
|
|
pyixapi
|
|
pynetbox
|
|
pyyaml
|
|
requests
|
|
tzdata
|
|
] ++ plugins python3.pkgs;
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
cp peering_manager/configuration{.example,}.py
|
|
python3 manage.py collectstatic --no-input
|
|
rm -f peering_manager/configuration.py
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/opt/peering-manager
|
|
cp -r . $out/opt/peering-manager
|
|
chmod +x $out/opt/peering-manager/manage.py
|
|
makeWrapper $out/opt/peering-manager/manage.py $out/bin/peering-manager \
|
|
--prefix PYTHONPATH : "$PYTHONPATH"
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru = {
|
|
# PYTHONPATH of all dependencies used by the package
|
|
python = python3;
|
|
pythonPath = python3.pkgs.makePythonPath propagatedBuildInputs;
|
|
|
|
tests = {
|
|
inherit (nixosTests) peering-manager;
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://peering-manager.net/";
|
|
license = licenses.asl20;
|
|
description = "BGP sessions management tool";
|
|
maintainers = teams.wdz.members;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|