Commit e859fbd5 authored by Sarah Clark's avatar Sarah Clark
Browse files

python3Packages.unidns: init at 0.0.4

parent 906721f2
Loading
Loading
Loading
Loading
+47 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  setuptools,
  asysocks,
}:

buildPythonPackage rec {
  pname = "unidns";
  version = "0.0.4";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "skelsec";
    repo = "unidns";
    tag = version;
    hash = "sha256-uhTb27HeBaoI4yURpNf1+D6bWIXSsmYzUyk0RJmgbjQ=";
  };

  build-system = [
    setuptools
  ];

  pythonRelaxDeps = [
    "asysocks"
  ];

  dependencies = [
    asysocks
  ];

  # No tests provided
  doCheck = false;

  pythonImportsCheck = [
    "unidns"
  ];

  meta = {
    description = "Basic async DNS library";
    homepage = "https://github.com/skelsec/unidns";
    changelog = "https://github.com/skelsec/unidns/releases/${src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ sarahec ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -19672,6 +19672,8 @@ self: super: with self; {
  unidiff = callPackage ../development/python-modules/unidiff { };
  unidns = callPackage ../development/python-modules/unidns { };
  unifi-ap = callPackage ../development/python-modules/unifi-ap { };
  unifi-discovery = callPackage ../development/python-modules/unifi-discovery { };