python3Packages.netbox-topology-views: init at 3.6.2

master
Simon Bruder 2023-08-12 13:56:42 +02:00
parent 7927b6939c
commit 3b8f90ed3a
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
2 changed files with 23 additions and 0 deletions

View File

@ -10,6 +10,8 @@ rec {
netbox-inventory = callPythonPackage ./python-modules/netbox-inventory { };
netbox-topology-views = callPythonPackage ./python-modules/netbox-topology-views { };
prefixed = callPythonPackage ./python-modules/prefixed { };
}));

View File

@ -0,0 +1,21 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "netbox-topology-views";
version = "3.6.2";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-w10iz19235dMIj7VM7w2beaPyENuDXhKQ421vZ0QCcc=";
};
doCheck = false;
meta = with lib; {
description = "A netbox plugin that draws topology views";
homepage = "https://github.com/mattieserver/netbox-topology-views";
license = licenses.asl20;
maintainers = with maintainers; [ sbruder ];
platforms = platforms.linux;
};
}