python313Packages.pynzbgetapi: init at 0.4.0 (#423389)

This commit is contained in:
Sandro
2025-07-27 00:23:15 +02:00
committed by GitHub
3 changed files with 41 additions and 1 deletions
@@ -0,0 +1,36 @@
{
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 ];
};
}
@@ -4059,7 +4059,8 @@
];
"nzbget" =
ps: with ps; [
]; # missing inputs: pynzbgetapi
pynzbgetapi
];
"oasa_telematics" =
ps: with ps; [
oasatelematics
@@ -7376,6 +7377,7 @@
"nws"
"nx584"
"nyt_games"
"nzbget"
"obihai"
"octoprint"
"ohme"
+2
View File
@@ -13377,6 +13377,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 { };