Unverified Commit d51318c4 authored by Dennis's avatar Dennis Committed by GitHub
Browse files

python3.pkgs.complycube: init at 1.1.6 (#236895)

parent 02a93283
Loading
Loading
Loading
Loading
+39 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -2238,6 +2238,8 @@ self: super: with self; {
  compiledb = callPackage ../development/python-modules/compiledb { };
  complycube = callPackage ../development/python-modules/complycube { };
  compreffor = callPackage ../development/python-modules/compreffor { };
  compressai = callPackage ../development/python-modules/compressai { };