evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / complycube / default.nix
blob2ad68d938682df583746f81940bc1faa5cd160d9
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pyhumps,
6   requests,
7   setuptools,
8 }:
10 buildPythonPackage rec {
11   pname = "complycube";
12   version = "1.1.6";
13   pyproject = true;
15   src = fetchPypi rec {
16     inherit version;
17     pname = "complycube";
18     hash = "sha256-hetcn5RX582CRVmtG5dAvr+NXD+7NKJjaqgOo8LlpqM=";
19   };
21   nativeBuildInputs = [ setuptools ];
23   propagatedBuildInputs = [
24     pyhumps
25     requests
26   ];
28   pythonImportsCheck = [ "complycube" ];
30   meta = {
31     homepage = "https://complycube.com";
32     description = "Official Python client for the ComplyCube API";
33     license = lib.licenses.mit;
34     maintainers = with lib.maintainers; [ derdennisop ];
35   };