1{ lib 2, buildPythonPackage 3, fetchPypi 4, pyhumps 5, requests 6, setuptools 7}: 8 9buildPythonPackage rec { 10 pname = "complycube"; 11 version = "1.1.6"; 12 pyproject = true; 13 14 src = fetchPypi rec { 15 inherit version; 16 pname = "complycube"; 17 hash = "sha256-hetcn5RX582CRVmtG5dAvr+NXD+7NKJjaqgOo8LlpqM="; 18 }; 19 20 nativeBuildInputs = [ 21 setuptools 22 ]; 23 24 propagatedBuildInputs = [ 25 pyhumps 26 requests 27 ]; 28 29 pythonImportsCheck = [ 30 "complycube" 31 ]; 32 33 meta = { 34 homepage = "https://complycube.com"; 35 description = "Official Python client for the ComplyCube API"; 36 license = lib.licenses.mit; 37 maintainers = with lib.maintainers; [ derdennisop ]; 38 }; 39}