Unverified Commit 1f20c951 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

python3Packages.python-ripple-api: init at 0.0.3 (#435165)

parents d4afb13c c8c6cbb0
Loading
Loading
Loading
Loading
+34 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  requests,
  setuptools,
}:

buildPythonPackage rec {
  pname = "python-ripple-api";
  version = "0.0.3";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-hlgc7swcCimpQueyxuy/zvr6WdBHWnjnqHTS/cUghss=";
  };

  build-system = [ setuptools ];

  dependencies = [ requests ];

  # No tests in the package
  doCheck = false;

  pythonImportsCheck = [ "pyripple" ];

  meta = {
    description = "Python API for interacting with ripple.com";
    homepage = "https://github.com/nkgilley/python-ripple-api";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.jamiemagee ];
  };
}
+2 −1
Original line number Diff line number Diff line
@@ -4986,7 +4986,8 @@
      ];
    "ripple" =
      ps: with ps; [
      ]; # missing inputs: python-ripple-api
        python-ripple-api
      ];
    "risco" =
      ps: with ps; [
        pyrisco
+2 −0
Original line number Diff line number Diff line
@@ -14897,6 +14897,8 @@ self: super: with self; {
  python-registry = callPackage ../development/python-modules/python-registry { };
  python-ripple-api = callPackage ../development/python-modules/python-ripple-api { };
  python-roborock = callPackage ../development/python-modules/python-roborock { };
  python-rtmidi = callPackage ../development/python-modules/python-rtmidi { };