Merge pull request #310824 from trishtzy/binance-connector/init

python3Packages.binance-connector: init at v3.7.0
This commit is contained in:
Raghav Sood 2024-05-11 20:43:43 +08:00 committed by GitHub
commit 0785f02ada
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 68 additions and 0 deletions

View File

@ -20692,6 +20692,11 @@
githubId = 9870613;
name = "Hubert Mühlhans";
};
trishtzy = {
github = "trishtzy";
githubId = 5356506;
name = "Tricia Tan";
};
trobert = {
email = "thibaut.robert@gmail.com";
github = "trobert";

View File

@ -0,0 +1,61 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pycryptodome
, pythonOlder
, requests
, websocket-client
# dependencies for tests
, pytest-cov
, pytest
, sure
, responses
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "binance-connector";
version = "3.7.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "binance";
repo = "${pname}-python";
rev = "refs/tags/v${version}";
hash = "sha256-hmn8WKr+krzOzHNJ/aynXAbf+rHxDfyKDgycdQQU3xk=";
};
propagatedBuildInputs = [
requests
pycryptodome
websocket-client
];
nativeCheckInputs = [
pytest-cov
pytest
sure
responses
pytestCheckHook
];
# pytestCheckHook attempts to run examples directory, which requires
# network access
disabledTestPaths = [
"examples/"
];
pythonImportsCheck = [
"binance.spot"
"binance.websocket"
];
meta = with lib; {
description = "Simple connector to Binance Public API";
homepage = "https://github.com/binance/binance-connector-python";
license = licenses.mit;
maintainers = with maintainers; [ trishtzy ];
};
}

View File

@ -1515,6 +1515,8 @@ self: super: with self; {
bimmer-connected = callPackage ../development/python-modules/bimmer-connected { };
binance-connector = callPackage ../development/python-modules/binance-connector { };
binary = callPackage ../development/python-modules/binary { };
binary2strings = callPackage ../development/python-modules/binary2strings { };