Unverified Commit 0163120e authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

python312Packages.netbox-plugin-dns: init at 1.1.7 (#374139)

parents 8ad44970 0a9077e4
Loading
Loading
Loading
Loading
+36 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  setuptools,
  dnspython,
}:
buildPythonPackage rec {
  pname = "netbox-plugin-dns";
  version = "1.1.7";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "peteeckel";
    repo = "netbox-plugin-dns";
    tag = version;
    hash = "sha256-wrVTsVKjGPJCIoSo6uuWtorJBjn4Kh2kYkBXxM88kCo";
  };

  build-system = [ setuptools ];

  dependencies = [
    dnspython
  ];

  # pythonImportsCheck fails due to improperly configured django app

  meta = {
    description = "Netbox plugin for managing DNS data";
    homepage = "https://github.com/peteeckel/netbox-plugin-dns";
    changelog = "https://github.com/peteeckel/netbox-plugin-dns/releases/tag/${src.tag}";
    license = lib.licenses.mit;
    platforms = lib.platforms.linux;
    maintainers = with lib.maintainers; [ felbinger ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -9160,6 +9160,8 @@ self: super: with self; {
  netbox-bgp = callPackage ../development/python-modules/netbox-bgp { };
  netbox-dns = callPackage ../development/python-modules/netbox-dns { };
  netbox-documents = callPackage ../development/python-modules/netbox-documents { };
  netbox-interface-synchronization = callPackage ../development/python-modules/netbox-interface-synchronization { };