1 { lib, buildPythonPackage, fetchPypi
2 , pytest, requests-mock, tox
3 , autobahn, certifi, chardet, cryptography, dateparser, pyopenssl, requests, service-identity, twisted }:
5 buildPythonPackage rec {
7 pname = "python-binance";
10 inherit pname version;
11 sha256 = "476459d91f6cfe0a37ccac38911643ea6cca632499ad8682e0957a075f73d239";
14 doCheck = false; # Tries to test multiple interpreters with tox
15 checkInputs = [ pytest requests-mock tox ];
17 propagatedBuildInputs = [ autobahn certifi chardet cryptography dateparser pyopenssl requests service-identity twisted ];
20 description = "Binance Exchange API python implementation for automated trading";
21 homepage = "https://github.com/sammchardy/python-binance";
22 license = lib.licenses.mit;
23 maintainers = [ lib.maintainers.bhipple ];