python3Packages.python-ripple-api: init at 0.0.3

Changed files
+36
pkgs
development
python-modules
python-ripple-api
top-level
+34
pkgs/development/python-modules/python-ripple-api/default.nix
···
+
{
+
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
pkgs/top-level/python-packages.nix
···
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 { };