mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
Merge pull request #310824 from trishtzy/binance-connector/init
python3Packages.binance-connector: init at v3.7.0
This commit is contained in:
commit
0785f02ada
@ -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";
|
||||
|
@ -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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user