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

This commit is contained in:
Dennis 2023-10-29 17:07:01 +01:00 committed by GitHub
parent 02a932836b
commit d51318c492
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,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 ];
};
}

View File

@ -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 { };