Unverified Commit d955afd4 authored by Arnout Engelen's avatar Arnout Engelen Committed by GitHub
Browse files

python3Packages.pydle: init at 1.1.0 (#429343)

parents d7aec090 e964eef8
Loading
Loading
Loading
Loading
+49 −0
Original line number Diff line number Diff line
{
  buildPythonPackage,
  fetchFromGitea,
  lib,
  nix-update-script,
  poetry-core,
  pytestCheckHook,
  pure-sasl,
  pytest-asyncio,
}:

buildPythonPackage rec {
  pname = "pydle";
  version = "1.1.0";
  pyproject = true;
  src = fetchFromGitea {
    domain = "codeberg.org";
    owner = "shiz";
    repo = "pydle";
    tag = "v${version}";
    hash = "sha256-LxlE0JVKgwDcPB7QuKkmfBWG33pDzG0F9qaL88xF8r4=";
  };

  build-system = [ poetry-core ];

  dependencies = [
    pure-sasl
  ];

  pythonImportsCheck = [
    "pydle"
  ];

  nativeCheckInputs = [
    pytestCheckHook
    pytest-asyncio
  ];

  __darwinAllowLocalNetworking = true;

  passthru.updateScript = nix-update-script { };

  meta = {
    description = "IRCv3-compliant Python 3 IRC library";
    homepage = "https://codeberg.org/shiz/pydle";
    license = lib.licenses.bsd3;
    maintainers = with lib.maintainers; [ polyfloyd ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -13119,6 +13119,8 @@ self: super: with self; {
  pydispatcher = callPackage ../development/python-modules/pydispatcher { };
  pydle = callPackage ../development/python-modules/pydle { };
  pydmd = callPackage ../development/python-modules/pydmd { };
  pydo = callPackage ../development/python-modules/pydo { };