python313Packages.iperf3: init at 0.1.11 (#426571)

This commit is contained in:
Martin Weinelt
2025-07-19 14:48:20 +02:00
committed by GitHub
3 changed files with 38 additions and 1 deletions
@@ -0,0 +1,34 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
iperf3,
setuptools,
}:
buildPythonPackage rec {
pname = "iperf3";
version = "0.1.11";
pyproject = true;
src = fetchFromGitHub {
owner = "thiezn";
repo = "iperf3-python";
tag = "v${version}";
hash = "sha256-kcEgG9lkYUqFtTgrGZdEQ0AHsx3yQIMFOG4A7d4mAnE=";
};
build-system = [ setuptools ];
# Tests require iperf3 client and server setup
doCheck = false;
pythonImportsCheck = [ "iperf3" ];
meta = {
description = "Python wrapper around iperf3";
homepage = "https://github.com/thiezn/iperf3-python";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
@@ -2745,7 +2745,8 @@
];
"iperf3" =
ps: with ps; [
]; # missing inputs: iperf3
iperf3
];
"ipma" =
ps: with ps; [
pyipma
+2
View File
@@ -7080,6 +7080,8 @@ self: super: with self; {
ipdb = callPackage ../development/python-modules/ipdb { };
iperf3 = callPackage ../development/python-modules/iperf3 { };
ipfshttpclient = callPackage ../development/python-modules/ipfshttpclient { };
iplotx = callPackage ../development/python-modules/iplotx { };