summary refs log tree commit diff
path: root/pkgs/development/python-modules/complycube/default.nix
blob: ee99ae8d28bd3187fda0fa7c226087514b97c92a (plain) (blame)
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
35
36
37
38
39
{ lib
, buildPythonPackage
, fetchPypi
, pyhumps
, requests
, setuptools
}:

buildPythonPackage rec {
  pname = "complycube";
  version = "1.1.6";
  pyproject = true;

  src = fetchPypi rec {
    inherit version;
    pname = "complycube";
    hash = "sha256-hetcn5RX582CRVmtG5dAvr+NXD+7NKJjaqgOo8LlpqM=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  propagatedBuildInputs = [
    pyhumps
    requests
  ];

  pythonImportsCheck = [
    "complycube"
  ];

  meta = {
    homepage = "https://complycube.com";
    description = "Official Python client for the ComplyCube API";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ derdennisop ];
  };
}