summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-ripple-api/default.nix
blob: c62b009b870b022a04c2b09541c034dc98c8c0d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
  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 ];
  };
}