Merge pull request #167963 from r-ryantm/auto-update/python3.10-python-binance

python310Packages.python-binance: 1.0.10 -> 1.0.16
This commit is contained in:
Fabian Affolter 2022-04-09 13:55:03 +02:00 committed by GitHub
commit ee1ee64036
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,14 +14,16 @@
buildPythonPackage rec {
pname = "python-binance";
version = "1.0.10";
version = "1.0.16";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "sammchardy";
repo = pname;
rev = "v${version}";
sha256 = "09pq2blvky1ah4k8yc6zkp2g5nkn3awc52ad3lxvj6m33akfzxiv";
rev = "refs/tags/v${version}";
hash = "sha256-2v3qeykjQR/CUOC6F0Xomm49Q+wrYJS8vmL3+u6ew0M=";
};
propagatedBuildInputs = [
@ -44,7 +46,9 @@ buildPythonPackage rec {
"tests/test_historical_klines.py"
];
pythonImportsCheck = [ "binance" ];
pythonImportsCheck = [
"binance"
];
meta = with lib; {
description = "Binance Exchange API python implementation for automated trading";