Unverified Commit 3e823875 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

python3Packages.netbox-contextmenus: init at 1.4.8 (#435921)

parents 55c49510 36bfc27d
Loading
Loading
Loading
Loading
+33 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  setuptools,
  netbox,
  python,
}:

buildPythonPackage rec {
  pname = "netbox-contextmenus";
  version = "1.4.8";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "PieterL75";
    repo = "netbox_contextmenus";
    tag = "v${version}";
    hash = "sha256-wK8IQ+vYFP9cWcazTOzP1eoKBU0YXwbQrtfM7tGNTXI=";
  };

  build-system = [ setuptools ];

  # pythonImportsCheck fails due to improperly configured django app

  meta = {
    description = "Netbox plugin to add context buttons to the links, making navigating less clicky";
    homepage = "https://github.com/PieterL75/netbox_contextmenus/";
    changelog = "https://github.com/PieterL75/netbox_contextmenus/releases/tag/${src.tag}";
    license = lib.licenses.unfree;
    maintainers = with lib.maintainers; [ felbinger ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -10315,6 +10315,8 @@ self: super: with self; {
  netbox-bgp = callPackage ../development/python-modules/netbox-bgp { };
  netbox-contextmenus = callPackage ../development/python-modules/netbox-contextmenus { };
  netbox-contract = callPackage ../development/python-modules/netbox-contract { };
  netbox-dns = callPackage ../development/python-modules/netbox-dns { };