depot/third_party/nixpkgs/pkgs/development/python-modules/binance-connector/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

60 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pycryptodome,
pythonOlder,
requests,
websocket-client,
# dependencies for tests
pytest-cov,
pytest,
sure,
responses,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "binance-connector";
version = "3.8.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "binance";
repo = "${pname}-python";
rev = "refs/tags/v${version}";
hash = "sha256-VUv9n+GePixsJ2Bqy4YOJpHEVkOjEO1HkBK+jxmkZpA=";
};
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 ];
};
}