python3Packages.pynetio: init at 0.1.8

This commit is contained in:
Jamie Magee
2025-08-11 22:25:29 -07:00
parent e853a7b1a9
commit e370730f13
2 changed files with 37 additions and 0 deletions
@@ -0,0 +1,35 @@
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
pythonAtLeast,
standard-telnetlib,
}:
buildPythonPackage rec {
pname = "pynetio";
version = "0.1.8";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-SSe6OHubWszOTnwytL/3GhzD4lGIz9kxS75kuJv7vKA=";
};
build-system = [ setuptools ];
dependencies = lib.optionals (pythonAtLeast "3.13") [ standard-telnetlib ];
# Package has no tests
doCheck = false;
pythonImportsCheck = [ "pynetio" ];
meta = {
description = "Binding library for Koukaam netio devices";
homepage = "https://github.com/wookiesh/pynetio";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
+2
View File
@@ -13382,6 +13382,8 @@ self: super: with self; {
pynetgear = callPackage ../development/python-modules/pynetgear { };
pynetio = callPackage ../development/python-modules/pynetio { };
pynfsclient = callPackage ../development/python-modules/pynfsclient { };
pyngo = callPackage ../development/python-modules/pyngo { };