Commit fa58891b authored by Jamie Magee's avatar Jamie Magee
Browse files

python313Packages.fastdotcom: init at 0.0.6

parent 75d49585
Loading
Loading
Loading
Loading
+41 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  icmplib,
  pythonOlder,
  requests,
  setuptools,
}:

buildPythonPackage rec {
  pname = "fastdotcom";
  version = "0.0.6";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchPypi {
    pname = "fastdotcom";
    inherit version;
    hash = "sha256-DAj5Bp8Vlg/NQSnz0yF/nHlIO7kStHlBABwvTWHVsIo=";
  };

  build-system = [ setuptools ];

  dependencies = [
    icmplib
    requests
  ];

  # Project has no tests
  doCheck = false;
  pythonImportsCheck = [ "fastdotcom" ];

  meta = {
    description = "Python API for testing internet speed on Fast.com";
    homepage = "https://github.com/nkgilley/fast.com";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.jamiemagee ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -4922,6 +4922,8 @@ self: super: with self; {
  fastdiff = callPackage ../development/python-modules/fastdiff { };
  fastdotcom = callPackage ../development/python-modules/fastdotcom { };
  fastdownload = callPackage ../development/python-modules/fastdownload { };
  fastdtw = callPackage ../development/python-modules/fastdtw { };