python3Packages.netbox-topology-views: init at 3.6.2
This commit is contained in:
parent
7927b6939c
commit
3b8f90ed3a
|
@ -10,6 +10,8 @@ rec {
|
||||||
|
|
||||||
netbox-inventory = callPythonPackage ./python-modules/netbox-inventory { };
|
netbox-inventory = callPythonPackage ./python-modules/netbox-inventory { };
|
||||||
|
|
||||||
|
netbox-topology-views = callPythonPackage ./python-modules/netbox-topology-views { };
|
||||||
|
|
||||||
prefixed = callPythonPackage ./python-modules/prefixed { };
|
prefixed = callPythonPackage ./python-modules/prefixed { };
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
|
21
python-modules/netbox-topology-views/default.nix
Normal file
21
python-modules/netbox-topology-views/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue