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

python3Packages.python-ripple-api: init at 0.0.3

parent 5788de50
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 −0
Original line number Diff line number Diff line
@@ -14899,6 +14899,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 { };