Commit 836fa3a2 authored by Jamie Magee's avatar Jamie Magee
Browse files

python313Packages.pynzbgetapi: init at 0.4.0

parent 150fe821
Loading
Loading
Loading
Loading
+36 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  setuptools,
}:

buildPythonPackage rec {
  pname = "pynzbgetapi";
  version = "0.4.0";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-ONwrlHEljiDa+/vRbSsHAEly+8Q3z87CwEzIiWedrm4=";
  };

  build-system = [
    setuptools
  ];

  # No tests available in the repository
  doCheck = false;

  pythonImportsCheck = [
    "pynzbgetapi"
  ];

  meta = {
    description = "Basic Python NZBGet API client";
    homepage = "https://github.com/voltron4lyfe/pynzbgetapi";
    changelog = "https://github.com/voltron4lyfe/pynzbgetapi/releases/tag/v${version}";
    license = lib.licenses.asl20;
    maintainers = [ lib.maintainers.jamiemagee ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -13345,6 +13345,8 @@ self: super: with self; {
  pynzb = callPackage ../development/python-modules/pynzb { };
  pynzbgetapi = callPackage ../development/python-modules/pynzbgetapi { };
  pyobihai = callPackage ../development/python-modules/pyobihai { };
  pyobjc-core = callPackage ../development/python-modules/pyobjc-core { };